Skip to content

Instantly share code, notes, and snippets.

@m0xb
Last active September 13, 2017 03:49
Show Gist options
  • Select an option

  • Save m0xb/bcf48832ab327c7476ceeb5281ff1f84 to your computer and use it in GitHub Desktop.

Select an option

Save m0xb/bcf48832ab327c7476ceeb5281ff1f84 to your computer and use it in GitHub Desktop.
class QuestionA:
def __init__(self, question_dict):
self.question_dict = question_dict
class QuestionB:
def __init__(self, question_text, answer_dict):
self.question_text = question_text
self.answer_dict = answer_dict
qa = QuestionA(???)
qb = QuestionB(???)
qa_text = ???
qb_text = ???
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment