python 实现读取一个excel多个sheet表并合并的方法


如下所示:

import xlrd

import pandas as pd
from pandas import DataFrame
  
DATA_DIR = 'D:/'
 
excel_name = '%s2017.xls' % DATA_DIR
wb = xlrd.open_workbook(excel_name)
# print(wb)
  
# 获取workbook中所有的表格
sheets = wb.sheet_names()
# print(sheets)
  
# 循环遍历所有sheet
df_28 = DataFrame()
for i in range ( len (sheets)):
 
# skiprows=2 忽略前两行
df = pd.read_excel(excel_name, sheet_name = i, skiprows = 2 , index = False , encoding = 'utf8' )
df_28 = df_28.append(df)
 
# 去除缺省值
df_28 = df_28.dropna()
df_28 = df_28.reset_index(drop = True )
print ( len (df_28))


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM