对列表中的值进行删除时,有pop()和remove()两个函数。
pop函数是根据列表中的位置进行删除,也就是删除指定位置的值;
remove函数是根据列表中的元素进行删除,也就是删除某一元素。
list = ["a", "b", "c", "b","d"]
list.pop(1)
list
结果显示 ["a", "c", "b", "d"]
list = ["a", "b", "c", "b","d"]
list.remove("b")
list
结果显示 ["a", "c", "b", "d"] 只能删除首个符合条件的元素
如果想删除所有指定元素,可以这么做:
list = ["a", "b", "c", "b","d"]
while "b" in list:
list.remove("b")
list
结果显示 ["a", "c", "d"]