mirror of
https://github.com/DeaDvey/mathgenerator.git
synced 2025-11-28 06:25:23 +01:00
13 lines
256 B
Python
13 lines
256 B
Python
from mathgenerator import mathgen
|
|
|
|
# test your generators here
|
|
|
|
print(mathgen.addition())
|
|
print(mathgen.genById(79))
|
|
print(mathgen.getGenList())
|
|
list = mathgen.getGenList()
|
|
|
|
# prints the order of generators in the list
|
|
for item in list:
|
|
print(item[2])
|