python怎么遍历函数的参数 python中遍历函数

主机教程 建站分享 2年前 (2022-10-18) 199次浏览

文章摘要:python怎么遍历函数的参数 python中遍历函数

在python中使用inspect模块对函数的参数进行遍历,具体方法如下: import inspect #导 […]

在python中使用inspect模块对函数的参数进行遍历,具体方法如下:

import inspect #导入inspect模块

def f(a,b,c):

argspec=inspect.getargvalues(inspect.currentframe())

return argspec

f(1,2,3)

ArgInfo(args=['a', 'b', 'c'], varargs=None, keywords=None, locals={'a': 1, 'c': 3, 'b': 2})


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:python怎么遍历函数的参数 python中遍历函数
文章链接:http://www.7966.org/post/13647.html
转载请注明出处

喜欢 (0)