帮我写一下使用python中pandas批量处理excel文件的代码
时间: 2023-06-04 22:06:22 浏览: 100
Python3使用pandas模块读写excel操作示例
5星 · 资源好评率100%
当然,我可以帮你写一下使用 Python 中 Pandas 批量处理 Excel 文件的代码。以下是一个简单的示例:
```python
import pandas as pd
import os
input_folder = "input_folder"
output_folder = "output_folder"
# 遍历文件夹中的所有 Excel 文件并批量处理
for filename in os.listdir(input_folder):
if filename.endswith(".xlsx"):
# 读取 Excel 文件
df = pd.read_excel(os.path.join(input_folder, filename))
# 在这里对 DataFrame 进行批量处理
# 将结果保存到新的 Excel 文件中
output_file = os.path.join(output_folder, f"processed_{filename}")
df.to_excel(output_file, index=False)
```
你可以将需要批量处理的 Excel 文件放在 `input_folder` 文件夹中,将处理后的 Excel 文件保存在 `output_folder` 文件夹中。注意,你需要在代码中添加实际的批量处理逻辑。如果你需要读取 CSV 文件,只需要使用 `pd.read_csv()` 函数即可。
阅读全文