字串、字串方法
阿新 • • 發佈:2020-12-27
1、字串下標
name = 'world' print(name) print(name[1 : 4 : 2]) #ol第一個數字1表示從下表為1的位置開始顯示,第二個數字4表示到位置為4的下標結束,第三個數字2表示每2個字母選取一個
2、字串方法
①len()方法:獲取字串長度,有返回值
name = 'helloworld' length = len(name) print(length) #顯示結果:10
②find():字串中查詢字元,有返回值
name = 'helloworld' position = name.find('w') print(position) #顯示結果:5
③count()方法:查詢字串中出現的字元的次數
name = 'helloworld' num = name.count('o') print(num) #顯示結果:2
④in 和 not in :判斷字元是否存在於字串中,有返回值
name = 'helloworld' print('o' in name) #顯示結果:True print('o' not in name) #顯示結果:False
⑤replace(' ', ' ')方法:替換字串中的字元,有返回值
name = 'helloworld' new_name = name.replace('l', '-' ) print(new_name) #內容顯示:he--owor-d
⑥split()方法:分隔字串,有返回值,返回值型別為列表list形式
name = 'helloworld' print(name.split('o')) #顯示結果:['hell', 'w', 'rld']