溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

怎么使用Python字符串大小寫轉(zhuǎn)換的函數(shù)

發(fā)布時(shí)間:2020-08-25 14:40:17 來源:億速云 閱讀:230 作者:Leah 欄目:編程語言

本篇文章給大家分享的是有關(guān)怎么使用Python字符串大小寫轉(zhuǎn)換的函數(shù),小編覺得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

Python字符串由內(nèi)建的str類代表,那么str 類包含哪些方法呢?Python 非常方便,它甚至不需要用戶查詢文檔,Python 是“自帶文檔”的。

這里需要讀者簡單掌握兩個(gè)幫助函數(shù):

dir():列出指定類或模塊包含的全部內(nèi)容(包括函數(shù)、方法、類、變量等)。

help():查看某個(gè)函數(shù)或方法的幫助文檔。

例如,要查看 str 類包含的全部內(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 類提供的所有方法,其中以“_”開頭、“_”結(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è)單詞的首字母大寫,其他字母保持不變。

在 str 類中與大小寫相關(guān)的常用方法如下:

title():將每個(gè)單詞的首字母改為大寫。

lower():將整個(gè)字符串改為小寫。

upper():將整個(gè)字符串改為大寫。

例如,如果希望看到 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 的與大小寫相關(guān)的常用方法:

a = 'our domain is crazyit.org'
# 每個(gè)單詞首字母大寫
print(a.title())
# 字符串中所有字符都小寫
print(a.lower())
# 字符串中所有字符都大寫
print(a.upper())

運(yùn)行上面程序,可以看到如下輸出結(jié)果:

Our Domain Is Crazyit.Org
our domain is crazyit.org
OUR DOMAIN IS CRAZYIT.ORG

以上就是怎么使用Python字符串大小寫轉(zhuǎn)換的函數(shù),小編相信有部分知識點(diǎn)可能是我們?nèi)粘9ぷ鲿姷交蛴玫降?。希望你能通過這篇文章學(xué)到更多知識。更多詳情敬請關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI