前面写过一篇文章关于excel的读写。其中:
模块xlrd
:用于读取excel数据
模块xlwt
: 用于向excel写入数据
接下来介绍模块xlutils
,可用于在当前的excel表中写入数据,不用再新开一个excel表
from xlutils.copy import copy
import os
import xlrd
def wirte_excel_data(self,row,col,value_data):
#打开文件,并且保留原格式
self.rbook = xlrd.open_workbook(excel_path,formatting_info=True)
#使用xlutils的copy方法使用打开的excel文档创建一个副本
self.wbook = copy(self.rbook)
#使用get_sheet方法获取副本要操作的sheet