mirror of
https://github.com/DeaDvey/mathgenerator.git
synced 2025-11-28 14:35:23 +01:00
12 lines
183 B
Python
12 lines
183 B
Python
from .funcs import *
|
|
from .__init__ import getGenList
|
|
|
|
|
|
genList = getGenList()
|
|
|
|
|
|
# || Non-generator Functions
|
|
def genById(id):
|
|
generator = genList[id][2]
|
|
return (generator())
|