av激情亚洲男人的天堂国语,日韩欧美精品一中文字幕,无码av一区二区三区无码,国产又色又爽又刺激的a片,国产又色又爽又刺激的a片

創(chuàng)新互聯(lián)Python教程:python字符串大小寫如何轉換

平常開發(fā)過程中對字符串的一些操作:

株洲網(wǎng)站建設公司創(chuàng)新互聯(lián)建站,株洲網(wǎng)站設計制作,有大型網(wǎng)站制作公司豐富經(jīng)驗。已為株洲超過千家提供企業(yè)網(wǎng)站建設服務。企業(yè)網(wǎng)站搭建\外貿(mào)網(wǎng)站制作要多少錢,請找那個售后服務好的株洲做網(wǎng)站的公司定做!

#字母大小寫轉換
#首字母轉大寫
#去除字符串中特殊字符(如:'_','.',',',';'),然后再把去除后的字符串連接起來
#去除'hello_for_our_world'中的'_',并且把從第一個'_'以后的單詞首字母大寫

代碼實例:

#字母大小寫轉換
#首字母轉大寫
#去除字符串中特殊字符(如:'_','.',',',';'),然后再把去除后的字符串連接起來
#去除'hello_for_our_world'中的'_',并且把從第一個'_'以后的單詞首字母大寫
low_strs= 'abcd'
uper_strs= 'DEFG'
test_strA= 'hello_world'
test_strB= 'goodBoy'
test_strC= 'hello_for_our_world'
test_strD= 'hello__our_world_'
  
#小寫轉大寫
low_strs= low_strs.upper()
print('abcd小寫轉大寫:', low_strs)
  
#大寫轉小寫
uper_strs= uper_strs.lower()
print('DEFG大寫轉小寫:', uper_strs)
  
#只大寫第一個字母
test_strB= test_strB[0].upper()+ test_strB[1:]
print('goodBoy只大寫第一個字母:', test_strB)
  
#去掉中間的'_',其他符號都是可以的,如:'.',',',';'
test_strA= ''.join(test_strA.split('_'))
print('hello_world去掉中間的\'_\':', test_strA)
  
#去除'hello_for_our_world'中的'_',并且把從第一個'_'以后的單詞首字母大寫
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\'中的\'_\',并且把從第一個\'_\'以后的單詞首字母大寫:', get_str(test_strC,'_'))
print('去除\'hello__our_world_\'中的\'_\',并且把從第一個\'_\'以后的單詞首字母大寫:', get_str(test_strD,'_'))

推薦:Python視頻教程。


網(wǎng)頁名稱:創(chuàng)新互聯(lián)Python教程:python字符串大小寫如何轉換
網(wǎng)頁地址:http://uogjgqi.cn/article/ccdiddh.html
掃二維碼與項目經(jīng)理溝通

我們在微信上24小時期待你的聲音

解答本文疑問/技術咨詢/運營咨詢/技術建議/互聯(lián)網(wǎng)交流