Files
mathgenerator/test.py
2020-10-19 21:07:50 -04:00

14 lines
226 B
Python

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