Python 列表 pop() 方法
Python基础 2022-06-06 15:26:38小码哥的IT人生shichen
Python 列表 pop() 方法
实例
删除 fruits 列表的第二个元素:
fruits = ['apple', 'banana', 'cherry']
fruits.pop(1)
完整实例:
fruits = ['apple', 'banana', 'cherry']
fruits.pop(1)
print(fruits)
定义和用法
pop() 删除指定位置的元素。
语法
list.pop(pos)
参数值
参数 | 描述 |
pos | 可选。数字,指定需删除元素的位置。默认值 -1,返回最后的项目。 |
更多实例
示例代码:
返回被删除的元素:
fruits = ['apple', 'banana', 'cherry']
x = fruits.pop(1)
完整实例:
fruits = ['apple', 'banana', 'cherry']
x = fruits.pop(1)
print(x)
注释:pop() 方法返回被删除的值。