用法:
Series.iteritems()
懒惰地迭代 (index, value) 元组。
此方法返回一个可迭代的元组(索引,值)。如果你想创建一个惰性迭代器,这很方便。
- 可迭代的
包含来自系列的(索引,值)对的元组的可迭代。
返回:
例子:
>>> s = pd.Series(['A', 'B', 'C']) >>> for index, value in s.items(): ... print(f"Index:{index}, Value:{value}") Index:0, Value:A Index:1, Value:B Index:2, Value:C
相关用法
- Python pandas.Series.items用法及代码示例
- Python pandas.Series.iat用法及代码示例
- Python pandas.Series.isna用法及代码示例
- Python pandas.Series.isnull用法及代码示例
- Python pandas.Series.idxmin用法及代码示例
- Python pandas.Series.idxmax用法及代码示例
- Python pandas.Series.iloc用法及代码示例
- Python pandas.Series.interpolate用法及代码示例
- Python pandas.Series.info用法及代码示例
- Python pandas.Series.isin用法及代码示例
- Python pandas.Series.infer_objects用法及代码示例
- 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用法及代码示例
- Python pandas.Series.dt.day_name用法及代码示例
- Python pandas.Series.sample用法及代码示例
- Python pandas.Series.head用法及代码示例
注:本文由纯净天空筛选整理自pandas.pydata.org大神的英文原创作品 pandas.Series.iteritems。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。