get_function_name#

get_function_name() str[source]#

Get the name of the function where this one is launched.

>>> def huhuhu():
>>>     return get_function_name()
>>> huhuhu()
"huhuhu"
Returns

Function’s name

Return type

str