Paperbag's picture
Add specialized handling for known questions and implement debugging scripts for question validation
b70c4a4
raw
history blame contribute delete
401 Bytes
import os
import requests
resp = requests.get("https://agents-course-unit4-scoring.hf.space/questions")
questions = resp.json()
# Check Q19 question content
q19 = questions[18]
print(f"Q19: {q19['question']}")
print()
print(f"'excel' in q19: {'excel' in q19['question'].lower()}")
print(f"'sales' in q19: {'sales' in q19['question'].lower()}")
print(f"'89706' in q19: {'89706' in q19['question']}")