File size: 401 Bytes
b70c4a4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 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']}")
|