dataframe怎么循环遍历数据
时间: 2024-05-13 18:15:28 浏览: 62
循环遍历dataset
可以使用`iterrows()`方法来遍历DataFrame中的每一行。示例如下:
```
import pandas as pd
# 创建一个DataFrame
df = pd.DataFrame({'A': [1, 2, 3], 'B': [4, 5, 6]})
# 使用iterrows()方法遍历DataFrame中的每一行
for index, row in df.iterrows():
print(f"Row {index}:")
print(f"A: {row['A']}")
print(f"B: {row['B']}")
```
输出结果为:
```
Row 0:
A: 1
B: 4
Row 1:
A: 2
B: 5
Row 2:
A: 3
B: 6
```
阅读全文