mirror of
https://github.com/DeaDvey/mathgenerator.git
synced 2025-11-28 14:35:23 +01:00
11 lines
253 B
Python
11 lines
253 B
Python
from .__init__ import *
|
|
|
|
|
|
def exponentiationFunc(maxBase = 20,maxExpo = 10):
|
|
base = random.randint(1, maxBase)
|
|
expo = random.randint(1, maxExpo)
|
|
|
|
problem = f"{base}^{expo} ="
|
|
solution = str(base ** expo)
|
|
return problem, solution
|