Files
mathgenerator/mathgenerator/funcs/division.py
2020-10-20 11:30:55 -04:00

15 lines
326 B
Python

from .__init__ import *
def divisionFunc(maxRes=99, maxDivid=99):
a = random.randint(0, maxDivid)
b = random.randint(0, min(maxRes, maxDivid))
c = a / b
problem = str(a) + "/" + str(b) + "="
solution = str(c)
return problem, solution
division = Generator("Division", 3, "a/b=", "c", divisionFunc)