摘要: #-*-coding:utf-8-*- import xlrd import xlwt def excel_copy(dir_from, dir_to, sheet_name): '''从一个excel写入到另外一个excel''' wb = xlrd.open_workbook(dir_from) # 选择sheet页 sheet1 = wb.sheet_... 阅读全文
posted @ 2017-01-11 17:43 breakcircle 阅读(5962) 评论(0) 推荐(0)