Skip to content

Instantly share code, notes, and snippets.

import random
class Question:
def __init__(self, text, answers, category):
self.text = text
self.answers = answers
self.category = category
class Answer:
def __init__(self, text, score, category):