import xlrd from xlutils.copy import copy class ExcelUtil: def __init__(self,excel_path=None,index=None): if excel_path == None: excel_path = 'C:\\Users\\Administrator\\Desktop\\ooo.xls' if index == None: index = 0 self.data = xlrd.open_workbook(exce…