帮助工具
Python 在解释器中内置了几个函数。如果要获取关键字,内置函数,模块或主题的信息,请打开 Python 控制台并输入:
>>> help()
你将直接输入关键字来接收信息:
>>> help(help)
或在实用程序内:
help> help
这将显示一个解释:
Help on _Helper in module _sitebuiltins object:
class _Helper(builtins.object)
| Define the builtin 'help'.
|
| This is a wrapper around pydoc.help that provides a helpful message
| when 'help' is typed at the Python interactive prompt.
|
| Calling help() at the Python prompt starts an interactive help session.
| Calling help(thing) prints help for the python object 'thing'.
|
| Methods defined here:
|
| __call__(self, *args, **kwds)
|
| __repr__(self)
|
| ----------------------------------------------------------------------
| Data descriptors defined here:
|
| __dict__
| dictionary for instance variables (if defined)
|
| __weakref__
| list of weak references to the object (if defined)
你还可以请求模块的子类:
help(pymysql.connections)
你可以使用帮助来访问已导入的不同模块的文档字符串,例如,尝试以下操作:
>>> help(math)
你会收到一个错误
>>> import math
>>> help(math)
现在,你将获得模块中可用方法的列表,但仅在你导入它之后。
用 quit
关闭帮手