Files
python_bootcamp/017/question_model.py
Tanguy Deleplanque d23a9c9503 day 17
2025-06-27 12:00:57 +02:00

4 lines
107 B
Python

class Question:
def __init__(self, text, answer):
self.text = text
self.answer = answer