help() 方法调用内置的 Python 帮助系统。
用法:
help(object)
参数:
help()
方法最多采用一个参数。
- object(可选) - 你想生成给定的帮助
object
help() 如何在 Python 中工作?
help()
方法用于交互使用。当您需要帮助编写 Python 程序并使用 Python modules 时,建议在您的解释器中尝试。
Note: object
传递给 help()
(不是字符串)
在 Python shell 上试试这些。
>>> help(list)
>>> help(dict)
>>> help(print)
>>> help([1, 2, 3])
如果字符串作为参数传递,则模块、函数、类、方法、关键字或文档主题的名称以及帮助页面将被打印。
注意:字符串作为参数传递给help()
如果 string
作为参数传递,则将给定的字符串查找为模块、函数、类、方法、关键字或文档主题的名称,并打印帮助页面。
在 Python shell 上试试这些。
>>> help('random thing')
>>> help('print')
>>> help('def')
>>> from math import *
help('math.pow')
注意:没有参数传递给help()
如果未传递任何参数,则 Python 的帮助实用程序(交互式帮助系统)会在控制台上启动。
>>> help()
然后,您可以输入主题名称以获取有关编写 Python 程序和使用 Python 模块的帮助。例如:
help> True
help> 'print'
help > print
要退出帮助实用程序并返回解释器,您需要输入quit
并按回车键。
help > quit
相关用法
- Python hex()用法及代码示例
- Python hashlib.sha3_256()用法及代码示例
- Python hashlib.sha3_512()用法及代码示例
- 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 hashlib.shake_256()用法及代码示例
- Python OpenCV haveImageReader()用法及代码示例
- Python hashlib.shake_128()用法及代码示例
- Python hashlib.sha3_384()用法及代码示例
- Python torch.distributed.rpc.rpc_async用法及代码示例
- Python torch.nn.InstanceNorm3d用法及代码示例
- Python pandas.arrays.IntervalArray.is_empty用法及代码示例
- Python tf.compat.v1.distributions.Multinomial.stddev用法及代码示例
注:本文由纯净天空筛选整理自 Python help()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。