当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python pandas.Series.pop用法及代码示例


用法:

Series.pop(item)

返回项目并从系列中掉落。如果未找到,则引发 KeyError。

参数

item标签

需要删除的元素的索引。

返回

从系列中弹出的值。

例子

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

相关用法


注:本文由纯净天空筛选整理自pandas.pydata.org大神的英文原创作品 pandas.Series.pop。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。