赞
踩
1.用 os模块的listdir(dir)方法得到目录下的所有文件名
2.用pandas遍历读取每个excel表格,生成一个DataFrame类型组成的列表,用pandas的concat()方法,合并表格。
3.用to_excel()方法生成新的excel文件 ,to_excel(path,index),path为保存路径,index默认为True,会把ID也保存下来,我们一般不需要保存。
import os
import pandas as pd
dir = 'C:/Users/elsie/Desktop/4-6'
filenames = os.listdir(dir)
index = 0
dfs = []
for name in filenames:
print(index)
dfs.append(pd.read_excel(os.path.join(dir,name),sheet_name=1))
index += 1 #为了查看合并到第几个表格了
df = pd.concat(dfs)
df.to_excel('C:/Users/elsie/Desktop/total.xlsx',index = False)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。