1 from openpyxl import load_workbook 2 path = r'D:\pywork\12' # EXCEL信息所在文件夾 3 e= load_workbook(path + '/' + 'excel信息表.xlsx') #打開excel 4 E= e.active #表示當前活躍的表,本案例中 當前活躍表為sheet1 5 #也可以使用 E = e.get_sheet_by_name('Sheet1') 來獲取工作表1 6 a = str(E.cell(row=1, column=2).value) # 將excel中 1行2列 對應的數據傳給a 7 b=E.max_row #讀取excel行數 8 c=E.max_column #讀取excel列數 9 print(a,b,c)
