100-Days-Of-Code/Visual Studio Code Projects/quizzler-app-start/question_model.py
Arcron ArchLinux 4d3a07e207 Fixed Error
2024-10-29 18:08:45 +05:30

6 lines
117 B
Python

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