python基礎學習字串操作

來源:互聯網
上載者:User

標籤:格式化   去除   upper   ace   lower   lines   串操作   count   mat   


#常用的字串操作
#somestring.capitalize() 首字母大寫,不需要參數
#somestring.lower() 將字母轉換為小寫
#somestring.upper() 將字母轉換為大寫
#somestring.count() 統計參數出現的次數
#somestring.find() 尋找參數的索引
#somestring.format() 格式化輸出
#somestring.strip() 去除兩邊的空格和分行符號
#somestring.replace(‘name‘,‘jxt‘)# 替換字串,後面可以加上需要替換的次數,預設全部替換
#somestring.split() 將字串轉換為列表,參數為分隔字元。
#somestring.splitlines() 將字串轉換為列表,以分行符號為分隔字元
#‘,‘.join(somelist) #將列錶轉換為字串並以字元為每個值的分隔字元
#somestring.endswith() #判斷字串是否以參數為結尾,返回布爾
#somestring.center(50,"#") 列印50個字元,不夠的用參數來補,字串在中間
#somestring.expandtabs(tabsize=1) 將字串中的定位字元轉換為多少個空格

#字串判斷
#somestring.isdigit() 判斷字串是否為數字
#somestring.isalpha() 判斷字串是否為純英文
#somestring.isalnum()#判斷字串是否為英文+數字
#somestring.islower()判斷是否為小寫英文
#somestring.upper()判斷是否為大寫英文
#somestring.isspace()判斷是否為空白格
#somestring.isidentifier()判斷是否符合變數名要求

python基礎學習字串操作

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.