help()方法調(diào)用內(nèi)置的Python幫助系統(tǒng)。
help()的語法為:
help(object)
help()方法最多使用一個參數(shù)。
object (可選)-您要生成給定的幫助 object
help()方法用于交互使用。當(dāng)需要編寫Python程序和使用Python模塊幫助時,建議在解釋器中嘗試使用它。
在Python shell上嘗試這些。
>>> help(list)
>>> help(dict)
>>> help(print)
>>> help([1, 2, 3])
如果將字符串作為參數(shù)傳遞,則模塊,函數(shù),類,方法,關(guān)鍵字或文檔主題的名稱以及幫助頁面將被打印。
如果將字符串作為參數(shù)傳遞,則將給定的字符串作為模塊,函數(shù),類,方法,關(guān)鍵字或文檔主題的名稱進行查找,并打印幫助頁面。
在Python shell上嘗試這些。
>>> help('random thing')
>>> help('print')
>>> help('def')
>>> from math import * help('math.pow')
如果未傳遞任何參數(shù),則Python的幫助實用程序(交互式幫助系統(tǒng))將在控制臺上啟動。
>>> help()
然后,您可以輸入主題的名稱以獲取有關(guān)編寫Python程序和使用Python模塊的幫助。例如:
help> True
help> 'print'
help > print
要退出幫助實用程序并返回到解釋器,您需要輸入quit并按Enter鍵。
help > quit