someone know if is possible to create a function in python that create variables with different names, something like this idea:
def makeVariable(variableName, n):
variableName = pow(n, 5)
so that later on I can use the variables with the name I specified in the def function. Ex:
makeVariable(one, 1)
makeVariable(two, 2)
print(one)
print(two)