python 字串操作。。

2022-07-05 14:42:12 字數 926 閱讀 5531

#字串操作
以0開始,有負下標的使用

0第乙個元素,-1最後乙個元素,

-len第乙個元 素,len-1最後乙個元素

name= "qwe , erw, qwe "

print(name.index("e")) #索引 檢視字元的下標

2print(name[0:4]) #切片 顧頭不顧尾

qweprint(name[0::2]) #步長

qe,ew w 

print(name.strip()) #脫掉

qwe , erw, qwe

print(name.split(",")) #以 , 分割

['qwe ', ' erw', ' qwe ']

print(len(name)) #統計字串長度

15name1 = "ppp,ooo,iii"

print(name + name1)

qwe , erw, qwe ppp,ooo,iii

name1 = name +name1

print(name1) #拼接字串

qwe , erw, qwe ppp,ooo,iii

Python字串操作

1 複製字串 str2 str1 2 鏈結字串 str abc 3 查詢字串 string.find sub string.index sub string.rfind sub string,rindex sub 4 字串比較 cmp str1,str2 cmp str1.upper str2.up...

Python字串操作

python如何判斷乙個字串只包含數字字元 python 字串比較 下面列出了常用的python實現的字串操作 strcpy sstr1,sstr2 sstr1 strcpy sstr2 sstr1 sstr1 strcpy2 print sstr2 strcat sstr1,sstr2 sstr1...

python字串操作

在 python 有各種各樣的string操作函式。在歷史上string類在 python 中經歷了一段輪迴的歷史。在最開始的時候,python 有乙個專門的string的module,要使用string的方法要先import,但後來由於眾多的 python 使用者的建議,從 python 2.0開...