dataframe遍历
时间: 2023-10-13 14:28:37 浏览: 119
python中使用iterrows()对dataframe进行遍历的实例
在Python中,我们可以使用循环遍历DataFrame中的每一行或每一列。下面是一些示例代码:
遍历每一行:
```python
import pandas as pd
# 创建一个DataFrame
data = {'name': ['Alice', 'Bob', 'Charlie'], 'age': [25, 30, 35]}
df = pd.DataFrame(data)
# 遍历每一行
for index, row in df.iterrows():
print(row['name'], row['age'])
```
遍历每一列:
```python
import pandas as pd
# 创建一个DataFrame
data = {'name': ['Alice', 'Bob', 'Charlie'], 'age': [25, 30, 35]}
df = pd.DataFrame(data)
# 遍历每一列
for col in df.columns:
print(col)
print(df[col])
```
阅读全文