예제 #1
0
# Use this file to determine which ID to use for the next generator that you add
from mathgenerator import mathgen

print(mathgen.getGenList()[-1][0]+1)
예제 #2
0
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])
예제 #3
0
from mathgenerator import mathgen

for item in mathgen.getGenList():
    if item[2](format='latex') == 'Latex unavailable':
        print(item[0], item[1], item[4])