方法一,利用 sheet.iter_rows() 獲取 Sheet1 表中的所有行,然后遍歷
1
2
3
4
5
6
7
|
import openpyxl wb = openpyxl.load_workbook('example.xlsx') sheet = wb.get_sheet_by_name('Sheet1') for row in sheet.iter_rows(): for cell in row: print(cell.coordinate, cell.value) print('--- END OF ROW ---') |
1
2
3
4
5
|
sheet = wb.get_sheet_by_name('Sheet1') for rowOfCellObjects in sheet['A1':'C3']: for cellObj in rowOfCellObjects: print(cellObj.coordinate, cellObj.value) print('--- END OF ROW ---') |
方法二,利用 sheet.max_row sheet.max_colum 獲取 Sheet1 表中最大行和列的值,然后遍歷
以上這篇Python利用openpyxl庫遍歷Sheet的實例就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持服務器之家。
原文鏈接:https://blog.csdn.net/qqyuanhao163/article/details/54976962