有没有一种简单的方法可以进入 python 函数并获取参数名称列表?
例如:
def func(a,b,c): print magic_that_does_what_I_want() >>> func() ['a','b','c']
谢谢
好吧,我们实际上并不需要inspect这里。
inspect
>>> func = lambda x, y: (x, y) >>> >>> func.__code__.co_argcount 2 >>> func.__code__.co_varnames ('x', 'y') >>> >>> def func2(x,y=3): ... print(func2.__code__.co_varnames) ... pass # Other things ... >>> func2(3,3) ('x', 'y') >>> >>> func2.__defaults__ (3,)
对于 Python 2.5 及更早版本,请使用func_code代替__code__和func_defaults代替__defaults__.
func_code
__code__
func_defaults
__defaults__