幫助工具

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 關閉幫手