Files
mathgenerator/test.py
2020-12-17 16:29:38 -05:00

16 lines
325 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(0, maxSum=20, style='latex')[0])
print(mathgen.genById(1, style='latex'))