def my_function():
...
my_variable = my_function
my_variable()
In this case, is there a way to get my_variable as string from inside my_function?
def my_function():
...
my_variable = my_function
my_variable()
In this case, is there a way to get my_variable as string from inside my_function?