2021年12月9日
摘要: #读取xls文件中的数据 import xlrd file = "原表.xls" wb = xlrd.open_workbook(file) #读取工作簿 ws = wb.sheets()[0] #选第一个工作表 data = [] for row in range(7, ws.nrows): na 阅读全文
posted @ 2021-12-09 14:22 季昂 阅读(790) 评论(0) 推荐(0) 编辑