| 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']}") | |