4 lines
108 B
Python
4 lines
108 B
Python
class Question:
|
|
def __init__(self, text, answer):
|
|
self.text = text
|
|
self.answer = answer
|