In Python, How do I get the function name as a string without calling the function?
def my_function():
.
.
.
print get_function_name_as_string(my_function) # my_function is not in quotes
output => "my_function"
is this available in python? if not, any idea how to write get_function_name_as_string
in python?