Question Model
Question model is nothing but a Python class with three attributes - question_text, correct_answer and choices. question_text is the question, correct_answer is the correct answer for that question and choices is a list of options for that question.
Let's create a question_model.py file and create the class in it:
3
