您好,登錄后才能下訂單哦!
小編給大家分享一下python中使用help()的方法,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
help()函數幫助我們了解模塊、類型、對象、方法、屬性的詳細信息。
1、幫助查看類型詳細信息,包含類的創建方式、屬性、方法
>>> help(list) Help on class list in module builtins: class list(object) | list() -> new empty list | list(iterable) -> new list initialized from iterable's items | | Methods defined here: | | __add__(self, value, /) | Return self+value. | | __contains__(self, key, /) | Return key in self. | | __delitem__(self, key, /) | Delete self[key]. | | __eq__(self, value, /) | Return self==value. | | __ge__(self, value, /) | Return self>=value. | | __getattribute__(self, name, /) | Return getattr(self, name). | | __getitem__(...) | x.__getitem__(y) <==> x[y] | | __gt__(self, value, /) | Return self>value. | | __iadd__(self, value, /) | Implement self+=value. | | __imul__(self, value, /) | Implement self*=value. | | __init__(self, /, *args, **kwargs) -- More --
2、幫助查看方法的詳細使用信息(使用時要注意輸入完整路徑,使用模塊幫助時,需要先導入模塊)
>>> from selenium.webdriver.common.by import By >>> help(By) Help on class By in module selenium.webdriver.common.by: class By(builtins.object) | Set of supported locator strategies. | | Data descriptors defined here: | | __dict__ | dictionary for instance variables (if defined) | | __weakref__ | list of weak references to the object (if defined) | | ---------------------------------------------------------------------- | Data and other attributes defined here: | | CLASS_NAME = 'class name' | | CSS_SELECTOR = 'css selector' | | ID = 'id' | | LINK_TEXT = 'link text' | | NAME = 'name' | | PARTIAL_LINK_TEXT = 'partial link text' | | TAG_NAME = 'tag name' | | XPATH = 'xpath' >>>
3、舉例如下:
查看python所有的關鍵字:help("keywords")
查看python所有的modules:help("modules")
查看python所有的modules中包含指定字符串的modules: help("modules yourstr")
查看python中常見的topics: help("topics")
查看python標準庫中的module:import os.path + help("os.path")
查看python內置的類型:help("list")
查看python類型的成員方法:help("str.find")
查看python內置函數:help("open")
以上是python中使用help()的方法的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。