創(chuàng)新互聯(lián)www.cdcxhl.cn八線動(dòng)態(tài)BGP香港云服務(wù)器提供商,新人活動(dòng)買多久送多久,劃算不套路!
創(chuàng)新互聯(lián)公司是一家專業(yè)提供丹陽(yáng)企業(yè)網(wǎng)站建設(shè),專注與網(wǎng)站設(shè)計(jì)制作、做網(wǎng)站、H5響應(yīng)式網(wǎng)站、小程序制作等業(yè)務(wù)。10年已為丹陽(yáng)眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)網(wǎng)絡(luò)公司優(yōu)惠進(jìn)行中。本篇文章給大家分享的是有關(guān)怎么使用Python字符串大小寫(xiě)轉(zhuǎn)換的函數(shù),小編覺(jué)得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說(shuō),跟著小編一起來(lái)看看吧。
Python字符串由內(nèi)建的str類代表,那么str 類包含哪些方法呢?Python 非常方便,它甚至不需要用戶查詢文檔,Python 是“自帶文檔”的。
這里需要讀者簡(jiǎn)單掌握兩個(gè)幫助函數(shù):
dir():列出指定類或模塊包含的全部?jī)?nèi)容(包括函數(shù)、方法、類、變量等)。
help():查看某個(gè)函數(shù)或方法的幫助文檔。
例如,要查看 str 類包含的全部?jī)?nèi)容,可以在交互式解釋器中輸入如下命令:
>>> 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 類提供的所有方法,其中以“_”開(kāi)頭、“_”結(jié)尾的方法被約定成私有方法,不希望被外部直接調(diào)用。
如果希望查看某個(gè)方法的用法,則可使用 help() 函數(shù)。例如,在交互式解釋器中輸入如下命令:
>>> 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.
從上面介紹可以看出,str 類的 title() 方法的作用是將每個(gè)單詞的首字母大寫(xiě),其他字母保持不變。
在 str 類中與大小寫(xiě)相關(guān)的常用方法如下:
title():將每個(gè)單詞的首字母改為大寫(xiě)。
lower():將整個(gè)字符串改為小寫(xiě)。
upper():將整個(gè)字符串改為大寫(xiě)。
例如,如果希望看到 lower() 方法的相關(guān)用法,可運(yùn)行如下命令:
>>> help(str.lower) Help on method_descriptor: lower(...) S.lower() -> str Return a copy of the string S converted to lowercase.
如下代碼示范了 str 的與大小寫(xiě)相關(guān)的常用方法:
a = 'our domain is crazyit.org' # 每個(gè)單詞首字母大寫(xiě) print(a.title()) # 字符串中所有字符都小寫(xiě) print(a.lower()) # 字符串中所有字符都大寫(xiě) print(a.upper())
運(yùn)行上面程序,可以看到如下輸出結(jié)果:
Our Domain Is Crazyit.Org our domain is crazyit.org OUR DOMAIN IS CRAZYIT.ORG
以上就是怎么使用Python字符串大小寫(xiě)轉(zhuǎn)換的函數(shù),小編相信有部分知識(shí)點(diǎn)可能是我們?nèi)粘9ぷ鲿?huì)見(jiàn)到或用到的。希望你能通過(guò)這篇文章學(xué)到更多知識(shí)。更多詳情敬請(qǐng)關(guān)注創(chuàng)新互聯(lián)-成都網(wǎng)站建設(shè)公司行業(yè)資訊頻道。