批量处理excel表格
时间: 2023-10-06 14:07:08 浏览: 67
可以使用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文件数据
input_path = os.path.join(input_folder, filename)
df = pd.read_excel(input_path)
# 对数据进行处理
# ...
# 保存处理后的数据到输出文件夹中
output_path = os.path.join(output_folder, filename)
df.to_excel(output_path, index=False)
```
上述代码将遍历输入文件夹中的所有Excel文件,读取每个文件的数据后进行处理,然后将处理后的数据保存到输出文件夹中。你可以根据自己的需要修改代码中的输入输出文件夹路径和数据处理逻辑。
阅读全文