- remove
只删除首个符合条件的元素
str = [1,2,3,2]
str.remove(2)
str
[1,3,2]
删除所有符合条件元素
str = [1,2,1,1,3]
while 1 in str:
str.remove(1)
str
[2,3]
- pop
按索引删除元素
str = [11,12,13]
str.pop(1)
str
[11,13]
- del
按索引删除
str = [11,12,13]
del str[1]
str
[11,13]
# 范围删除
str = [11,12,13]
del str[:1]
str
[13]