創(chuàng)新互聯(lián)www.cdcxhl.cn八線動(dòng)態(tài)BGP香港云服務(wù)器提供商,新人活動(dòng)買多久送多久,劃算不套路!
西烏珠穆沁網(wǎng)站建設(shè)公司成都創(chuàng)新互聯(lián),西烏珠穆沁網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為西烏珠穆沁超過千家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\成都外貿(mào)網(wǎng)站制作要多少錢,請找那個(gè)售后服務(wù)好的西烏珠穆沁做網(wǎng)站的公司定做!這篇文章主要介紹了Python大小寫轉(zhuǎn)換,首字母大寫,去除特殊字符的示例,具有一定借鑒價(jià)值,需要的朋友可以參考下。希望大家閱讀完這篇文章后大有收獲。下面讓小編帶著大家一起了解一下。
總結(jié)我們在平常開發(fā)過程中對字符串的一些操作:
#字母大小寫轉(zhuǎn)換
#首字母轉(zhuǎn)大寫
#去除字符串中特殊字符(如:'_','.',',',';'),然后再把去除后的字符串連接起來
#去除'hello_for_our_world'中的'_',并且把從第一個(gè)'_'以后的單詞首字母大寫
代碼實(shí)例:
#字母大小寫轉(zhuǎn)換 #首字母轉(zhuǎn)大寫 #去除字符串中特殊字符(如:'_','.',',',';'),然后再把去除后的字符串連接起來 #去除'hello_for_our_world'中的'_',并且把從第一個(gè)'_'以后的單詞首字母大寫 low_strs= 'abcd' uper_strs= 'DEFG' test_strA= 'hello_world' test_strB= 'goodBoy' test_strC= 'hello_for_our_world' test_strD= 'hello__our_world_' #小寫轉(zhuǎn)大寫 low_strs= low_strs.upper() print('abcd小寫轉(zhuǎn)大寫:', low_strs) #大寫轉(zhuǎn)小寫 uper_strs= uper_strs.lower() print('DEFG大寫轉(zhuǎn)小寫:', uper_strs) #只大寫第一個(gè)字母 test_strB= test_strB[0].upper()+ test_strB[1:] print('goodBoy只大寫第一個(gè)字母:', test_strB) #去掉中間的'_',其他符號(hào)都是可以的,如:'.',',',';' test_strA= ''.join(test_strA.split('_')) print('hello_world去掉中間的\'_\':', test_strA) #去除'hello_for_our_world'中的'_',并且把從第一個(gè)'_'以后的單詞首字母大寫 def get_str(oriStr,splitStr): str_list= oriStr.split(splitStr) if len(str_list) >1: for indexin range(1,len(str_list)): if str_list[index] != '': str_list[index]= str_list[index][0].upper()+ str_list[index][1:] else: continue return ''.join(str_list) else: return oriStr print('去除\'hello_for_our_world\'中的\'_\',并且把從第一個(gè)\'_\'以后的單詞首字母大寫:', get_str(test_strC,'_')) print('去除\'hello__our_world_\'中的\'_\',并且把從第一個(gè)\'_\'以后的單詞首字母大寫:', get_str(test_strD,'_'))
感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享Python大小寫轉(zhuǎn)換,首字母大寫,去除特殊字符的示例內(nèi)容對大家有幫助,同時(shí)也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)-成都網(wǎng)站建設(shè)公司行業(yè)資訊頻道,遇到問題就找創(chuàng)新互聯(lián),詳細(xì)的解決方法等著你來學(xué)習(xí)!