python 字串常用操作

2021-10-02 12:49:16 字數 1060 閱讀 4565

name = 「my name is yy」

print(name.capitalize()) #首字母大寫

print(name.count(「y」)) #統計y的個數

print(name.center(50,"-"))#以name內容沒中心,不夠的用-代替

print(name.endswith(「yy」))#以yy結尾 布林值

name = 「my \name is yy」

print(name.expandtabs(tabsize=30))#tab鍵加入30個空格

print(name[name.find(「name」):])#字串切片

name = 「my name is and i am is old」

print(name.format(name=『alex』,year=23))#格式化

print(name.format_map())#字典格式

print(『ab123』.isalnum())

print(『ab123』.isalpha())#alpha

print(name.isdigit()) #整數

print(『a1a』.isidentifier())#判定是不是乙個合法的識別符號

print(『2233a』.isnumeric()) #是否全是數字

print(『my name is』.isprintable())#是否能列印 tty file,drive file檔案不能列印

print(『my name is』.isupper()) #首字母是否為大寫

print(』+』.join([『1』,『2』,『3』])) # 1+2+3

print(name.ljust(50,』』))#不夠的用號補齊 右邊

print(name.rjust(50,』-』))#不夠的用*號補齊 左邊

print(『alex』.lower()) #變小寫

print(『alex』.upper()) #變大寫

print(』\nalex』.lstrip())#去左邊的空格

print(『alex\n』.rstrip())#去右邊的空格

python 字串常用操作

coding utf 8 str1 dafhgfshhk lfhgj hhs dhfs len str1 計算長度,當有中文時需要顯示轉換為utf 8編碼,否則計算的結果會有誤差 str2 中文 len str2 結果是 6 將字串顯示轉換為utf 8 str3 str2.decode utf 8 ...

python 字串常用操作

name monicao name.capitalize 首字母大寫 print name.capitalize print name.count o 統計某個字元的個數 name1 my name is monica print name1.center 50,返回字串寬度 即長度 為50的字串,...

python字串 元組常用操作

常用字串操作函式 author cgq name i tam chenguoqiang print name.capitalize 首字母大寫,其他都小寫 print name.count a 計算a的個數 print name.center 50,一共列印50字元,不夠的用 補上,並居中 prin...