Python List remove() 方法
Python 列表 ( List ) 对象的 remove() 方法用于移除列表中某个值的第一个匹配项
语法
list_obj.remove(obj)
参数
参数 | 说明 |
---|---|
obj | 要移除的对象 |
返回值
无
范例
下面的代码使用 remove() 方法从列表 p 中移除 Tsinghua
>>> p1 = ['PEK', 28, 'Tsinghua','Li Bai', 'Tsinghua'] >>> p1 ['PEK', 28, 'Tsinghua', 'Li Bai', 'Tsinghua'] >>> p1.remove('Tsinghua') >>> p1 ['PEK', 28, 'Li Bai', 'Tsinghua']