Skip to content

Instantly share code, notes, and snippets.

View LazarLazarov's full-sized avatar
👁️

Zara LazarLazarov

👁️
View GitHub Profile
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):