Python 列表 remove() 方法
定义和用法
The remove()
方法删除具有指定值的元素的第一次出现。
语法
list.remove(elmnt)
参数值
参数 | 描述 |
---|---|
elmnt | 必需。任何类型(字符串、数字、列表等)。要删除的元素 |
The remove()
方法删除具有指定值的元素的第一次出现。
list.remove(elmnt)
参数 | 描述 |
---|---|
elmnt | 必需。任何类型(字符串、数字、列表等)。要删除的元素 |
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]