摘要: import openpyxl # 读 def read16excel(path): # 实例化excel表 wb = openpyxl.load_workbook(path) # 创建新工作表 wb.create_sheet("Sheet2") # 查看sheet页名字 print(wb.sheetnames) # 通过索引定位sheet页 sheet = wb.worksheets[0] # 阅读全文
posted @ 2019-09-15 14:21 周围圆 阅读(412) 评论(0) 推荐(0) 编辑