python合并 excel 表

# -*- coding: utf-8 -*- #将多个Excel文件合并成一个 import xlrd import xlsxwriter #打开一个excel文件 def open_xls(file): fh=xlrd.open_workbook(file) return fh #获取excel中全部的sheet表 def getsheet(fh): return
相关文章
相关标签/搜索