1. 程式人生 > >Python List 刪除元素

Python List 刪除元素

1. 使用del刪除指定元素

li = [1, 2, 3, 4]
del li[3]
print(li)
# Output [1, 2, 3]

2. 使用list方法pop刪除元素

li = [1, 2, 3, 4]
li.pop(2)
print(li)
# Output [1, 2, 4]

注:指定pop引數,將會刪除該位置的元素;無引數時預設刪除最後一個元素

3. 使用切片刪除元素

li = [1, 2, 3, 4]
li = li[:2] + li[3:]
print(li)
# Output [1, 2, 4]

4. 使用list方法remove刪除指定值的元素

li = [1
, 2, 3, 4] li.remove(3) print(li) # Output [1, 2, 4]

注:remove方法刪除指定值的元素,與其他方法不同。