摘要:
import openpyxl list_wb = openpyxl.load_workbook('list.xlsx') #打开现有工作表 sheet = list_wb.active print(sheet.max_row) # 获取最大行 print(sheet.max_column) # 获 阅读全文
摘要:
import xlrd from xlutils.copy import copy # 打开Excel wb = xlrd.open_workbook('list.xls') # 打开Excel的sheet,有多种方式,此处选择第一个sheet sheet = wb.sheet_by_index(0 阅读全文