pandas合并一个文件夹内所有excel表格

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 = 'data/'
filenames = os.listdir(dir)
index = 0
dfs = []
for name in filenames:
	print(index)
	dfs.append(pd.read_excel(os.path.join(dir,name)))
	index += 1 #为了查看合并到第几个表格了
df = pd.concat(dfs)
df.to_excel('data/total.xlsx',index = False)

 

你可能感兴趣的:(Python基础教程学习笔记)