aeae383
1
2
3
4
5
6
7
8
from typing import List class Question: def __init__(self, answerText:str, questionText: str = '', distractors: List[str] = []): self.answerText = answerText self.questionText = questionText self.distractors = distractors