(amount=4, quiz_type="boolean")
| 4 | |
| 5 | |
| 6 | def fetch_quiz_data(amount=4, quiz_type="boolean"): |
| 7 | url = f"https://opentdb.com/api.php?amount={amount}&type={quiz_type}" |
| 8 | response = requests.get(url) |
| 9 | data_json = response.json() |
| 10 | return data_json["results"] |
| 11 | |
| 12 | |
| 13 | def check_answer(question, answer, score): |