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
|
Is there an easy way to be inside a python function and get a list of the parameter names? For example:
Thanks
| |||||
feedback
|
|
If you also want the values you can use the
| |||||
feedback
|
|
locals() returns a dictionary with local names:
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. | |||
|
feedback
|
| |||||||
feedback
|
|
Well we don't actually need
| ||||
|
feedback
|