This commit is contained in:
Tanguy Deleplanque
2025-06-27 12:00:57 +02:00
parent a2691e1e06
commit d23a9c9503
4 changed files with 62 additions and 0 deletions

25
017/quiz_brain.py Normal file
View File

@ -0,0 +1,25 @@
class QuizBrain:
def __init__(self, questions_list):
self.question_number = 0
self.questions_list = questions_list
self.score = 0
def still_has_question(self):
return self.question_number < len(self.questions_list)
def next_question(self):
current_question = self.questions_list[self.question_number]
self.question_number += 1
user_answer = input(f"Q.{self.question_number}: {current_question.text} (True/False)?: ")
is_correct = self.check_answer(user_answer, current_question.answer)
def check_answer(self, user_answer, expected_answer):
if user_answer.lower() == expected_answer.lower():
print("You got it right!")
self.score +=1
else:
print("That's wrong")
print(f"The correct answer was: {expected_answer}")
print(f"You current score is {self.score} / {self.question_number}")
print("\n")