Python字串的相關操作

2021-09-24 14:31:35 字數 395 閱讀 6393

判斷字串

s.isalnum()#所有字元都是數字或者字母

s.isalpha()#所有字元都是字母

s.isdigit()#所有字元都是數字

s.islower()#所有字元都是小寫

s.isupper()#所有字元都是大寫

s.istitle()#所有單詞都是首字母大寫,像標題

s.isspace()#所有字元都是空白字元、\t、\n

大小寫轉換

s.upper()#把所有字元中的小寫字母轉換成大寫字母

s.lower()#把所有字元中的大寫字母轉換成小寫字母

s.capitalize()#把第乙個字母轉化為大寫字母,其餘小寫

s.title()#把每個單詞的第乙個字母轉化為大寫,其餘小寫

Python 字串的相關操作

1.python中要求字串必須用引號括起來,單引號和雙引號的作用相同,只要配對即可。但在使用引號時需要留意一下幾種特殊情況 str1 i m a coder str2 spring is here,let us jam said woodchuck.str3 we are scared,let s ...

Python 字串相關操作函式

目錄 title upper lower rstrip replace split count 以首字母大寫的方式顯示每個單詞 name abc def print name.title 輸出結果 abc def 將字串改為全部大寫 name abc print name.upper 輸出結果 ab...

python基礎 字串的相關操作

1.統計字串長度 print len hello str 2.統計某乙個字串出現的次數 print hello str.count llo print hello str.count abc 3.某乙個字串出現的位置 print hello str.index llo 沒有會報錯 1.判斷空白字元 ...