python的技巧 发表于 2020-12-01 更新于 2022-08-12 分类于 python 阅读次数: 本文字数: 293 阅读时长 ≈ 1 分钟 python的一些小技巧之前一直想找的一个方法,就是希望能够获得python中声明的函数的参数名,但是没有找到对应的方法,今天偶然在知乎上看到的。可以使用Inspect模块,来获取到声明的函数的参数名 123456import inspectdef test(a,b,c): print(a,b,c)print(inspect.getfullargspec(test).args) # ['a', 'b', 'c'] 部分转载自 https://www.zhihu.com/question/431725755/answer/1592193887