1.导入xlutils 的copy函数
from xlutils.copy import copy
2.读取已有xlsx文件
file = os.getcwd() + '\xxx.xlsx'
workBook = xlrd.open_workbook(file)
3.复制该workBook 获取xlwt可以读取的table
table = copy(workBook)
4.通过workBook获取sheet
sheet = workBook.get_sheet('sheet名')
5.通过sheet写入数据
sheet.write('row', 'col', 'data')
6.保存表格
xlwt.save('xxx.xlsx')