Python 的 help(~)
内置函数允许我们查看模块、函数、类等的文档。
参数
1.object
| object
| optional
要查看其文档的对象。默认调用内置帮助系统。
返回值
None
例子
要查看 round
内置函数的文档:
help(round)
Help on built-in function round in module builtins:
round(number, ndigits=None)
Round a number to a given precision in decimal digits.
The return value is an integer if ndigits is omitted or None. Otherwise
the return value has the same type as the number. ndigits may be negative.
相关用法
- Python help()用法及代码示例
- Python hex方法用法及代码示例
- Python hex()用法及代码示例
- Python hex用法及代码示例
- Python hashlib.sha3_256()用法及代码示例
- Python NumPy hstack方法用法及代码示例
- Python BeautifulSoup has_attr方法用法及代码示例
- Python hasattr方法用法及代码示例
- Python http.HTTPStatus用法及代码示例
- Python hashlib.sha3_512()用法及代码示例
- Python hashlib.shake_256()用法及代码示例
- Python hashlib.shake_128()用法及代码示例
- Python NumPy hypot方法用法及代码示例
- Python hashlib.blake2s()用法及代码示例
- Python hashlib.blake2b()用法及代码示例
- Python hasattr()用法及代码示例
- Python html.escape()用法及代码示例
- Python statistics harmonic_mean()用法及代码示例
- Python html.unescape()用法及代码示例
- Python math hypot()用法及代码示例
- Python hash()用法及代码示例
- Python hashlib.sha3_224()用法及代码示例
- Python OpenCV haveImageReader()用法及代码示例
- Python NumPy hsplit方法用法及代码示例
- Python http.client.HTTPConnection.set_tunnel用法及代码示例
注:本文由纯净天空筛选整理自Arthur Yanagisawa大神的英文原创作品 Python | help method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。