Files
mathgenerator/test.py
2020-10-26 13:33:46 -04:00

14 lines
252 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(110))