PYTHON循环读取多个excel文件并处理的代码
时间: 2023-02-18 15:35:07 浏览: 352
批量获取Excel数据
这里有一段简单的Python代码,可以用来循环读取多个Excel文件,并处理它们:
import pandas as pd
# 列出文件夹中所有Excel文件
excel_files = [f for f in os.listdir('.') if f.endswith('.xlsx')]
# 循环读取文件
for f in excel_files:
df = pd.read_excel(f)
# 执行处理
# ...
# 保存处理结果
df.to_excel(f)
阅读全文