mirror of
https://github.com/DeaDvey/mathgenerator.git
synced 2025-11-28 06:25:23 +01:00
15 lines
326 B
Python
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)
|