字串 列表和元組的相同與不同

2021-09-25 09:19:06 字數 716 閱讀 3916

python 表示式(以列表為例)

結果描述

len([1, 2, 3])3長度

[1, 2, 3] + [4, 5, 6]

[1, 2, 3, 4, 5, 6]

組合[『hi!』] * 4

[『hi!』, 『hi!』, 『hi!』, 『hi!』]

重複3 in [1, 2, 3]

true

元素是否存在於列表中

for x in [1, 2, 3]: print(x, end=" ")

1 2 3

迭代python 表示式(以列表為例)

結果描述

l[2]

『taobao』

讀取第三個元素

從右側開始讀取倒數第二個元素: count from the right

輸出從第二個元素開始後的所有元素

字串列表元組增

jion()

不能增刪

strip()

pop,remove,del,clear

不能刪改

replace()

可直接通過索引改

不能改查

find()、index()、索引、切片、遍歷

索引、切片、遍歷、index()

索引、切片、遍歷

字串 列表 元組

字串常用方法 s my name is jike.i am 18 print s.upper 全部轉成大寫 print s.lower 全部轉成小寫 print s.title 將字串中單詞首字母大寫 print s.strip 去除兩邊的空格 print s.count m 統計字元出現的次數 p...

字串,列表,元組

1,字串 str1 hello world print len str1 計算字串的長度 print str1.capitalize 首字母大寫 print str1.upper 所有字母大寫 print str1.lower 所有字母小寫 print str1.find ll 從字串中查詢子串的位...

字串,列表,元組

字串,列表,元組,練習 判斷120是否在物件s列表當中 s zhiqiao lingyan yan 520 i 120 in sprint i false 修改列表 s zhiqiao qiao yan 12 i s 2 ling yan 通過索引的方式進行修改和新增第二與第三個元素為ling,ya...