赞
踩
remove()函数用于移除列表中某个值的第一个匹配项。
list.remove(obj) # obj表示列表中要移除的对象。
l = [666,233,666,'aaa','bbb'] l.remove(666) print(l) l.remove('bbb') print(l)