pandas.Series.pop #

系列。弹出(项目) [来源] #

返回系列中的物品和掉落物。如果未找到,则引发 KeyError。

参数
物品标签

需要删除的元素的索引。

返回
从系列中弹出的值。

例子

>>> ser = pd.Series([1, 2, 3])
>>> ser.pop(0)
1
>>> ser
1    2
2    3
dtype: int64