mirror of
https://github.com/DeaDvey/mathgenerator.git
synced 2025-11-28 06:25:23 +01:00
17 lines
323 B
Python
17 lines
323 B
Python
from mathgenerator import mathgen
|
|
|
|
# test your generators here
|
|
|
|
# print(mathgen.addition())
|
|
|
|
# prints each generator in genList
|
|
list = mathgen.getGenList()
|
|
for item in list:
|
|
print(item[2])
|
|
|
|
# print(mathgen.getGenList())
|
|
print(mathgen.genById(111))
|
|
|
|
#Make a pdf with 10 problems of generator id 1
|
|
mathgen.makePdf(0, 10)
|