用法:
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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。