摘要: import openpyxl list_wb = openpyxl.load_workbook('list.xlsx') #打开现有工作表 sheet = list_wb.active print(sheet.max_row) # 获取最大行 print(sheet.max_column) # 获 阅读全文
posted @ 2021-02-08 18:00 OTAKU_nicole 阅读(132) 评论(0) 推荐(0) 编辑
摘要: import xlrd from xlutils.copy import copy # 打开Excel wb = xlrd.open_workbook('list.xls') # 打开Excel的sheet,有多种方式,此处选择第一个sheet sheet = wb.sheet_by_index(0 阅读全文
posted @ 2021-02-08 14:26 OTAKU_nicole 阅读(81) 评论(0) 推荐(0) 编辑