用法:
kind
说明参数值如何绑定到参数。可能的值(可通过
Parameter
访问,例如Parameter.KEYWORD_ONLY
):姓名
意义
POSITIONAL_ONLY
值必须作为位置参数提供。仅位置参数是出现在 Python 函数定义中的
/
条目(如果存在)之前的参数。POSITIONAL_OR_KEYWORD
值可以作为关键字或位置参数提供(这是 Python 中实现的函数的标准绑定行为。)
VAR_POSITIONAL
未绑定到任何其他参数的位置参数元组。这对应于 Python 函数定义中的
*args
参数。KEYWORD_ONLY
值必须作为关键字参数提供。仅关键字参数是出现在 Python 函数定义中的
*
或*args
条目之后的参数。VAR_KEYWORD
未绑定到任何其他参数的关键字参数的字典。这对应于 Python 函数定义中的
**kwargs
参数。示例:打印所有没有默认值的仅关键字参数:
>>> def foo(a, b, *, c, d=10): ... pass >>> sig = signature(foo) >>> for param in sig.parameters.values(): ... if (param.kind == param.KEYWORD_ONLY and ... param.default is param.empty): ... print('Parameter:', param) Parameter: c
相关用法
- Python inspect.Parameter.kind.description用法及代码示例
- Python inspect.Parameter.replace用法及代码示例
- Python inspect.Signature.from_callable用法及代码示例
- Python inspect.isasyncgenfunction用法及代码示例
- Python inspect.isawaitable用法及代码示例
- Python inspect.BoundArguments.apply_defaults用法及代码示例
- Python inspect.BoundArguments用法及代码示例
- Python inspect.formatargspec用法及代码示例
- Python inspect.Signature.replace用法及代码示例
- Python inspect.signature用法及代码示例
- Python inspect.getcallargs用法及代码示例
- Python scipy integrate.trapz用法及代码示例
- Python int转exponential用法及代码示例
- Python integer转string用法及代码示例
- Python scipy interpolate.CubicHermiteSpline.solve用法及代码示例
- Python scipy interpolate.CubicSpline.solve用法及代码示例
- Python int.from_bytes用法及代码示例
- Python scipy integrate.cumtrapz用法及代码示例
- Python scipy interpolate.PchipInterpolator.solve用法及代码示例
- Python int.bit_length用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 inspect.Parameter.kind。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。