python3使用xlrd、xlwt合并多个Excel到一个文件

import xlrd import xlwt #打开一个Excel def open_xls(file): fh=xlrd.open_workbook(file) return fh #获取excel中全部的sheet表 def getsheet(fh): return fh.sheets() #获取table的行数 def getnrows(fh,sh
相关文章
相关标签/搜索