Untitled

 avatar
unknown
plain_text
2 months ago
225 B
2
Indexable
for question in question_data:
    question_text = question["question"]
    question_answer = question["correct_answer"]
    new_question = Question(question_text, question_answer)
    question_bank.append(new_question)
Editor is loading...
Leave a Comment