访问 Python 函数中的参数名称
访问 Python 函数中的参数名称列表通常很有用,特别是对于调试目的或动态生成代码时。
检索此信息的一种有效方法是通过 func.__code__.co_argcount 和 func.__code__.co_varnames 属性。下面是一个示例:
<code class="python">def func(a, b, c): # Access the number of parameters and their names num_args = func.__code__.co_argcount arg_names = func.__code__.co_varnames[:num_args] print(num_args, arg_names) func()</code>
此代码将输出:
3 ('a', 'b', 'c')
co_argcount 提供函数参数的总数,而 co_varnames[:num_args] 返回包含以下名称的元组函数中的非默认参数。
或者,您可以使用检查模块获取参数信息:
<code class="python">import inspect def func(a, b, c): params = inspect.getargspec(func) print(params.args) func()</code>
这也会输出:
['a', 'b', 'c']
请注意,默认参数不会出现在 params.args 列表中。但是,您可以使用 params.defaults 单独访问它们。
以上是如何获取Python函数的参数名称?的详细内容。更多信息请关注PHP中文网其他相关文章!