有沒有辦法來檢查一個函數或方法在python裏面的功能類似於Matlab中的幫助函數。我想獲得該功能的定義,而不必谷歌它。Python:函數文檔
2
A
回答
10
是的,你可以在python交互式解釋器中調用help(whatever)
。
>>> help
Type help() for interactive help, or help(object) for help about object.
>>> help(zip)
Help on built-in function zip in module __builtin__:
zip(...)
zip(seq1 [, seq2 [...]]) -> [(seq1[0], seq2[0] ...), (...)]
Return a list of tuples, where each tuple contains the i-th element
from each of the argument sequences. The returned list is truncated
in length to the length of the shortest argument sequence.
你甚至可以通過(引用)關鍵字,並得到非常詳細的幫助:
>>> help('if')
The ``if`` statement
********************
The ``if`` statement is used for conditional execution:
if_stmt ::= "if" expression ":" suite
("elif" expression ":" suite)*
["else" ":" suite]
It selects exactly one of the suites by evaluating the expressions one
by one until one is found to be true (see section *Boolean operations*
for the definition of true and false); then that suite is executed
(and no other part of the ``if`` statement is executed or evaluated).
If all expressions are false, the suite of the ``else`` clause, if
present, is executed.
Related help topics: TRUTHVALUE
>>> help('def')
Function definitions
********************
A function definition defines a user-defined function object
....
甚至一般的主題:
>>> help('FUNCTIONS')
Functions
*********
Function objects are created by function definitions. The only
operation on a function object is to call it: ``func(argument-list)``.
There are really two flavors of function objects: built-in functions
and user-defined functions. Both support the same operation (to call
the function), but the implementation is different, hence the
different object types.
See *Function definitions* for more information.
Related help topics: def, TYPES
調用內置的幫助系統。 (此功能用於交互式使用。)如果未提供參數,則交互式幫助系統將在解釋器控制檯上啓動。
如果參數是一個字符串,則該字符串將被查找爲模塊,函數,類,方法,關鍵字或文檔主題的名稱,並在控制檯上打印幫助頁。
如果參數是任何其他類型的對象,則會生成該對象上的幫助頁面。
1
help()函數爲您提供幾乎所有的幫助,但如果您搜索某個東西(如要使用的模塊),請鍵入help('modules'),它將搜索可用的模塊。
然後,如果您需要查找有關模塊的信息,請輸入dir(module_name)以查看模塊中定義的方法。
+0
令人驚訝的是,我通過了150頁的Python書,並且從未提及過dir()或help()。謝謝!! – Greatporedout 2013-04-25 23:19:18
相關問題
- 1. Python函數註釋與文檔
- 2. Python中特定函數的文檔
- 3. 文檔`[`函數
- 4. GeomFromText函數文檔
- 5. Mathematica:函數文檔
- 6. Rails文檔.where函數
- 7. 函數文檔 - >的Doxygen
- 8. jQuery文檔()函數太慢
- 9. splunk「ifnull」函數的文檔?
- 10. Webkit webkit_dom_document_evaluate函數文檔
- 11. 函數式編程文檔
- 12. nodeJS函數文檔語法
- 13. 如何用sphinx-apidoc文檔化Python函數參數
- 14. Python Sphinx:文檔主頁像Python文檔或Sphinx文檔
- 15. python-otter文檔
- 16. Python文件函數
- 17. 爲某些python函數傳輸文檔字符串
- 18. 可能在NetBeans(Python插件)中查看方法/函數文檔?
- 19. Python有42個內建函數,而文檔列表68
- 20. Python的Doxygen:如何生成嵌套函數的文檔
- 21. 在python sphinx文檔中記錄模塊/類/函數體
- 22. 如何閱讀Python中的典型函數文檔?
- 23. 獅身人面像 - Python模塊,類和函數文檔
- 24. Azure函數和文檔數據庫
- 25. doxygen函數參數文檔(//!<vs @param)
- 26. 在Python文檔中嵌入reStructuredText文檔
- 27. Python包裝文檔
- 28. ANTLR 4 Python文檔
- 29. Python的NLTK文檔
- 30. Python urllib2.Request.get_header文檔?
+1,我從來不知道把字符串傳遞給'help()'。 – Blender 2013-04-25 22:37:16
感謝您的快速和徹底的答案。字符串的東西是相當有幫助的,不知道爲什麼我沒有完全嘗試它。 同樣在玩過之後,我發現你必須輸入'help('module.method')'來獲得方法的幫助,所以對於sqrt'help('math.sqrt')'並且追加它的'help( 'list.append')' – Greatporedout 2013-04-25 23:14:27