Python 列表 pop() 方法
定义和用法
pop()
方法移除指定位置的元素。
语法
list.pop(pos)
参数值
参数 | 描述 |
---|---|
pos | 可选。指定要移除的元素位置的数字,默认值为 -1,返回最后一个元素 |
更多示例
注意: pop()
方法返回移除的值。
pop()
方法移除指定位置的元素。
list.pop(pos)
参数 | 描述 |
---|---|
pos | 可选。指定要移除的元素位置的数字,默认值为 -1,返回最后一个元素 |
注意: pop()
方法返回移除的值。
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]