Leetcode 134. 加油站(中等) 貪心演算法
阿新 • • 發佈:2022-03-04
1 前情提要
之前通過python操作excel表格均是通過xlrd模組完成的,由於xlrd模組最新版本不支援*.xlsx格式的檔案,解決改問題有兩種方法
方法一:解除安裝已經安裝的最新版本xlrd,安裝指定版本pip install xlrd==1.2.0
方法二:使用openpyxl模組代替xlrd,該庫支援xlsx格式的excel
demo示例如下:
表格內容:
程式碼如下
import os from openpyxl import load_workbook from common import getPath class readExcel(): # 初始化操作def __init__(self, excelName): self.excelName = excelName #獲取表格中的資料 def getExcelCell(self): #獲取檔案路徑 excelFile = os.path.join(getPath.testCaseFile, self.excelName) #載入表格 wb = load_workbook(excelFile) #建立空列表將獲取到的資料存放到列表中 caseList = []#獲取表格中的表單 for sheetName in wb.sheetnames: sheet = wb[sheetName] #獲取每張表中最大行數 maxRow = sheet.max_row #獲取每行中需要的資料,並存放到列表中 for i in range(2,maxRow+1): dictData = dict( functionModule = sheet.cell(row=i,column=1).value, caseID= sheet.cell(row=i,column=2).value, caseName = sheet.cell(row=i,column=4).value, url = sheet.cell(row=i,column=5).value, headers = sheet.cell(row=i,column=7).value, data = sheet.cell(row=i,column=8).value, loginType = sheet.cell(row=i,column=9).value ) caseList.append(dictData) return caseList def writeExcel(self): pass if __name__ == '__main__': # print(getPath.testCaseFile) caseFile = readExcel('Case_demo.xlsx') cases = caseFile.getExcelCell() #print(caseFile.getExcelCell()) for case in cases: print(case)