list列表常用方法

2021-08-05 18:23:53 字數 1263 閱讀 5155

好多都走馬觀花過去了.發現不常用的方法不太記得了.複習一下,鞏固下記憶.

python內建資料型別列表:list

list(列表)是一種有序的集合,可以隨時新增和刪除其中的元素

所以列表是可迭代物件

list = ['google', 'runoob']

['google', 'runoob', 2000]

list = ['google', 'runoob', 1997, 2000]

del list[2]

['google', 'runoob', 2000]

list = ['google','runoob','google',2000]

list.count('google')

2

list = ['google','runoob']

list2 = [1,2,3]

list.extend(list2)

['google','runoob',1,2,3]

list = ['google','runoob']

list.index('runoob')

1

list =  [1,2,3]

list.insert(0,'sub')

['sub',1,2,3]

list =  [1,2,3,4]

a = list.pop()

print(a)

4print(list)

[1,2,3]

list = [1,2,3,4,3]

list.remove(3)

print(list)

[1,2,4,3]

list = [1,2,3]

list.clear()

print(list)

list = [1,2,3,4]

list.reverse()

print(list)

[4,3,2,1]

list = [4,3,2,1]

list.sort()

print(list)

[1,2,3,4]

python3 list列表的常用方法

python3 list列表的常用方法 li 1,2,3 clera 清除整個列表,慎用 li.clear help li.clear clear method of builtins.list instance l.clear none remove all items from l copy 是...

Scala常用List列表操作方法示例

把scala list的幾種常見方法梳理彙總如下,日常開發場景基本上夠用了。建立列表 scala val days list sunday monday tuesday wednesday thursday friday saturday days list string list sunday,m...

Python列表 list 常用操作方法小結

常見列表物件操作方法 list.append x 把乙個元素新增到鍊錶的結尾,相當於 a len a x list.extend l 將乙個給定列表中的所有元素都新增到另乙個列表中,相當於 a len a l list.insert i,zjuwiix 在指定位置插入乙個元素。第乙個引數是準備插入到...