Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In Python, how do I get the function name as a string without calling the function?

def my_function():
    pass

print get_function_name_as_string(my_function) # my_function is not in quotes

should output "my_function".

Is this available in python? If not, any idea how to write get_function_name_as_string in python?

share|improve this question

3 Answers

up vote 99 down vote accepted
my_function.__name__

Using __name__ is the preferred method as it applies uniformly. Unlike func_name, it works on built-in functions as well:

>>> import time
>>> time.time.func_name
Traceback (most recent call last):
  File "<stdin>", line 1, in ?
AttributeError: 'builtin_function_or_method' object has no attribute 'func_name'
>>> time.time.__name__ 
'time'

Also the double underscores indicate to the reader this is a special attribute. As a bonus, classes and modules have a __name__ attribute too, so you only have remember one special name.

share|improve this answer
my_function.func_name

There are also other fun properties of functions. Type dir(func_name) to list them. func_name.func_code.co_code is the compiled function, stored as a string.

import dis
dis.dis(my_function)

will display the code in almost human readable format. :)

share|improve this answer
What is the difference between f.__name__ and f.func_name? – Federico A. Ramponi Oct 30 '08 at 19:43
They are the same. python.org/doc/2.5.2/ref/types.html#types – Markus Jarderot Oct 30 '08 at 19:48
double underscore names are traditionally regarded as private though never enforced. So it is better to use func_name even though they may be the same. – Sam Corder Oct 30 '08 at 20:11
6  
Sam: names are private, __names are special, there's a conceptual difference. – Matthew Trevor Oct 31 '08 at 3:15

You could also use

import sys
this_function_name = sys._getframe().f_code.co_name
share|improve this answer
Good abstract solution. – paulus_almighty May 9 at 19:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.