Skip to content

Instantly share code, notes, and snippets.

View Spyeedy's full-sized avatar

Spyeedy

View GitHub Profile
@Spyeedy
Spyeedy / MiniGame.py
Created November 10, 2018 14:42
Spyeedy's little mini game consisting of Math Questions and other stuffs!
import random as rand
class MathQuestion:
def __init__(self):
self.__digit_one = rand.randint(0, 9)
self.__digit_two = rand.randint(0, 9)
self.__operator = rand.randint(0, 2)