利用Python将多个excel文件合并为一个文件

# -*- coding: utf-8 -*- #导入需要使用的包 import xlrd  #读取Excel文件的包 import xlsxwriter   #将文件写入Excel的包 #打开一个excel文件 def open_xls(file):     f = xlrd.open_workbook(file)     return f #获取excel中所有的sheet表 def gets
相关文章
相关标签/搜索