Fixed all ordering except for addition

This commit is contained in:
lukew3
2020-10-19 20:42:49 -04:00
parent 84cb84a21c
commit ce79a2a94b
2 changed files with 10 additions and 4 deletions

View File

@@ -4,3 +4,9 @@ from mathgenerator import mathgen
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])