100-days-of-code/Day 17/quiz-game-start/question_model.py
rzmk 5f7dcd5629 Completed the Trivia Quiz Project!
Fix Day 17 README

Add trivia demo
2021-08-07 22:37:13 -04:00

4 lines
108 B
Python

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