python的pop函数怎么用
时间: 2023-08-11 20:06:50 浏览: 168
python字典-15-函数的总结.ev4.rar
`pop()` 是 Python 列表(List)中的一个方法,用于删除并返回指定索引位置的元素。它的语法为:
```python
list.pop(index)
```
其中,`index` 是要删除元素的索引位置,如果不指定该参数,则默认删除列表中的最后一个元素。
例如,以下代码演示了如何使用 `pop()` 方法:
```python
fruits = ['apple', 'banana', 'cherry']
x = fruits.pop(1)
print(fruits) # ['apple', 'cherry']
print(x) # 'banana'
```
在上面的代码中,`pop(1)` 删除了列表 `fruits` 中索引位置为 1 的元素 `'banana'`,并将其赋值给变量 `x`。最后打印出 `fruits` 和 `x` 的值,输出结果分别为 `['apple', 'cherry']` 和 `'banana'`。
阅读全文