1. 程式人生 > >python中列表的增刪查改

python中列表的增刪查改

python 列表

本文將學習python中對列表中的元素進行增刪查改操作
以l為例:
l=[‘hello‘,‘tomorrow‘,‘!‘]
1.增加:
(1)在列表末尾增添元素:列表名.append(‘element‘)

l.append(‘hello‘)
print(l)

輸出:
技術分享圖片
(2)在列表任意位置插入元素:列表名.insert(索引,‘element‘)
l.insert(1,"luu‘s")
print(l)
輸出:
技術分享圖片

2.刪除
(1)del 列表名[序號]

del l[1]
print(l)

(2)列表名.pop(序號)-------可以刪除後接著使用它

print(l)
pop_element=l.pop(0)
print(l)
print(pop_element)

輸出:
技術分享圖片
(3)列表名.remove(‘element‘)-------可以根據內容刪除匹配的第一個元素
print(l)
l.remove(‘hello‘)
print(l)
輸出結果:
技術分享圖片

3.查找
待學習

4.修改
(1)直接用索引,賦值進行修改

l[1]=‘future‘
print(l)

輸出:
技術分享圖片

python中列表的增刪查改