实例
删除 fruits 列表的 "banana" 元素:
fruits = ['apple', 'banana', 'cherry'] fruits.remove("banana")
定义和用法
remove() 方法具有指定值的首个元素。
语法
list.remove(element)
参数值