Python利用openpyxl库遍历Sheet的实例
方法一,利用 sheet.iter_rows() 获取 Sheet1 表中的所有行,然后遍历
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 ---')
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 表中最大行和列的值,然后遍历
相关推荐
dayslrk 2020-08-16
rookieliang 2020-06-15
up0 2020-06-13
cas的无名 2020-06-09
LULUBAO 2020-05-03
真新镇的涅法雷姆 2020-04-29
星辰大海的路上 2020-03-02
sunny0 2020-03-02
HongKongPython 2020-01-29
zcabcd 2020-01-05
liugan 2019-12-29
jzlixiao 2019-10-28
A宇 2019-09-03
allentony 2019-09-06
socket 2019-09-02
秋草正离离 2019-04-16
zcabcd 2019-07-01
LittleCoder 2019-07-01