I'm really new to Python but I'm trying to do something definitely above my skill level. Is it possible to calla a function though a variable? For example,
def one():
print("this is a function")
progress = "one"
progress()
with the intention of calling the function "one()".
Is this possible?