Is there an easy way to be inside a python function and get a list of the parameter names?

For example:

def func(a,b,c):
    print magic_that_does_what_I_want()

>>> func()
['a','b','c']

Thanks

link|improve this question

1  
It's on the line of code above the "magic_that_does_what_I_want ". And this is a duplicate: stackoverflow.com/questions/218616/… – S.Lott Feb 24 '09 at 15:02
feedback

5 Answers

up vote 16 down vote accepted

If you also want the values you can use the inspect module

import inspect

def func(a, b, c):
    frame = inspect.currentframe()
    args, _, _, values = inspect.getargvalues(frame)
    print 'function name "%s"' % inspect.getframeinfo(frame)[2]
    for i in args:
        print "    %s = %s" % (i, values[i])
    return [(i, values[i]) for i in args]

>>> func(1, 2, 3)
function name "func"
    a = 1
    b = 2
    c = 3
[('a', 1), ('b', 2), ('c', 3)]
link|improve this answer
3  
Kelly Yancey's blog has a great post explaining this in detail and giving a slightly more refined version, plos a comparison with, e.g. unbeknown's solution. Recommended. – dan mackinlay Feb 4 '11 at 0:53
feedback

locals() returns a dictionary with local names:

def func(a,b,c):
    print locals().keys()

prints the list of parameters. If you use other local variables those will be included in this list. But you could make a copy at the beginning of your function.

link|improve this answer
feedback
import inspect

def func(a,b,c=5):
    pass

inspect.getargspec(func)

(['a', 'b', 'c'], None, None, (5,))
link|improve this answer
That's not inside the function.. – R S Feb 24 '09 at 15:34
3  
you can do it inside the function too – Oli Feb 25 '09 at 7:23
feedback

Well we don't actually need inspect here.

>>> func = lambda x, y: (x, y)
>>> 
>>> func.func_code.co_argcount
2
>>> func.func_code.co_varnames
('x', 'y')
>>>
>>> def func2(x,y=3):
...  print func2.func_code.co_varnames
...  pass # Other things
... 
>>> func2(3,3)
('x', 'y')
>>> 
>>> func2.func_defaults
(3,)
link|improve this answer
feedback

Well I think better to use inspect because otherwise if you have any local variable inside your func then it will also be added to the list when calling func.func_code.co_varnames

Thanks Sumeet Koshal

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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