Is there a way to find a functions name from within the function?
def some_function():
    function_name = ... # some way of retrieving the name 'some_function'
    print(function_name)
The expected value of function_name would be the string: 'some_function'
 
     
    