您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關查看Python中所有函數以及它們的用法和功能的內容。小編覺得挺實用的,因此分享給大家做個參考。一起跟隨小編過來看看吧。
Python非常方便,它不需要用戶查詢文檔,只需掌握如下兩個幫助函數,即可查看Python中的所有函數(方法)以及它們的用法和功能:
dir():列出指定類或模塊包含的全部內容(包括函數、方法、類、變量等)。
help():查看某個函數或方法的幫助文檔。
例如,要查看字符串變量(它的類型是 str 類型)所能調用的全部內容,可以在交互式解釋器中輸入如下命令:
>>> dir(str) ['__add__', '__class__', '__contains__', '__delattr__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__getnewargs__', '__gt__', '__hash__', '__init__', '__init_subclass__', '__iter__', '__le__', '__len__', '__lt__', '__mod__', '__mul__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__rmod__', '__rmul__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', 'capitalize', 'casefold', 'center', 'count', 'encode', 'endswith', 'expandtabs', 'find', 'format', 'format_map', 'index', 'isalnum', 'isalpha', 'isdecimal', 'isdigit', 'isidentifier', 'islower', 'isnumeric', 'isprintable', 'isspace', 'istitle', 'isupper', 'join', 'ljust', 'lower', 'lstrip', 'maketrans', 'partition', 'replace', 'rfind', 'rindex', 'rjust', 'rpartition', 'rsplit', 'rstrip', 'split', 'splitlines', 'startswith', 'strip', 'swapcase', 'title', 'translate', 'upper', 'zfill'] >>>
上面列出了字符串類型(str)提供的所有方法,其中以“_”開頭、“_”結尾的方法被約定成私有方法,不希望被外部直接調用。
如果希望查看某個方法的用法,則可使用 help() 函數。例如,在交互式解釋器中輸入如下命令:
>>> help(str.title) Help on method_descriptor: title(...) S.title() -> str Return a titlecased version of S, i.e. words start with title case characters, all remaining cased characters have lower case. >>>
從上面介紹可以看出,title()方法的使用形式是“str.title()”,其功能是將字符串中所有單詞的首字母大寫,其他所有字符全部改為小寫。
通過使用 dir() 和 help() 函數,我們就可以查看字符串變量所能調用的所有方法,包括他們的使用方法和功能等。
感謝各位的閱讀!關于查看Python中所有函數以及它們的用法和功能就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。