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

16 lines
257 B
Python

from mathgenerator import mathgen
# test your generators here
print(mathgen.addition())
print(mathgen.genById(40))
# prints each generator in genList
"""
list = mathgen.getGenList()
for item in list:
print(item[2])
# print(mathgen.getGenList())
"""