gpt4 book ai didi

python - 在 Python 中打印函数参数列表

转载 作者:太空狗 更新时间:2023-10-30 01:39:59 24 4
gpt4 key购买 nike

有没有办法打印出函数的参数列表?例如:

def func(a, b, c):
pass

print_func_parametes(func)

这将产生如下内容:

["a", "b", "c"]

最佳答案

使用检查模块。

>>> import inspect
>>> inspect.getargspec(func)
(['a', 'b', 'c'], None, None, None)

返回的元组的第一部分就是您要查找的内容。

关于python - 在 Python 中打印函数参数列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/648679/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com