python pandas 读取excel的每一行
时间: 2023-06-11 20:09:21 浏览: 225
python pandas 读取excel数据
你可以使用 `pandas` 库的 `read_excel` 方法来读取 Excel 文件,然后使用 `iterrows()` 方法遍历每一行,例如:
```python
import pandas as pd
# 读取 Excel 文件
df = pd.read_excel('example.xlsx')
# 遍历每一行
for index, row in df.iterrows():
# 处理每一行数据
print(row['列名1'], row['列名2'], ...)
```
其中 `example.xlsx` 是你要读取的 Excel 文件名,`列名1`、`列名2` 等是你要读取的每一列的列名。在循环中,`index` 表示当前行的行号,`row` 表示当前行的数据。你可以根据需要,将每一行的数据赋值给对应的变量或进行其他处理。
阅读全文