用法:
Series.pop(item)
返回项目并从系列中掉落。如果未找到,则引发 KeyError。
- item:标签
需要删除的元素的索引。
- 从系列中弹出的值。
参数:
返回:
例子:
>>> ser = pd.Series([1,2,3])
>>> ser.pop(0) 1
>>> ser 1 2 2 3 dtype:int64
相关用法
- Python pandas.Series.pow用法及代码示例
- Python pandas.Series.plot.line用法及代码示例
- Python pandas.Series.plot.hist用法及代码示例
- Python pandas.Series.plot.box用法及代码示例
- Python pandas.Series.product用法及代码示例
- Python pandas.Series.plot.kde用法及代码示例
- Python pandas.Series.pipe用法及代码示例
- Python pandas.Series.plot.pie用法及代码示例
- Python pandas.Series.plot.bar用法及代码示例
- Python pandas.Series.pct_change用法及代码示例
- Python pandas.Series.plot.area用法及代码示例
- Python pandas.Series.plot.barh用法及代码示例
- Python pandas.Series.plot.density用法及代码示例
- Python pandas.Series.prod用法及代码示例
- Python pandas.Series.add_prefix用法及代码示例
- Python pandas.Series.map用法及代码示例
- Python pandas.Series.max用法及代码示例
- Python pandas.Series.str.isdecimal用法及代码示例
- Python pandas.Series.str.get用法及代码示例
- Python pandas.Series.to_csv用法及代码示例
注:本文由纯净天空筛选整理自pandas.pydata.org大神的英文原创作品 pandas.Series.pop。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。