Python利用openpyxl库遍历Sheet的实例
方法一,利用sheet.iter_rows()获取Sheet1表中的所有行,然后遍历
importopenpyxl
wb=openpyxl.load_workbook('example.xlsx')
sheet=wb.get_sheet_by_name('Sheet1')
forrowinsheet.iter_rows():
forcellinrow:
print(cell.coordinate,cell.value)
print('---ENDOFROW---')
sheet=wb.get_sheet_by_name('Sheet1')
forrowOfCellObjectsinsheet['A1':'C3']:
forcellObjinrowOfCellObjects:
print(cellObj.coordinate,cellObj.value)
print('---ENDOFROW---')
方法二,利用sheet.max_rowsheet.max_colum获取Sheet1表中最大行和列的值,然后遍历
以上这篇Python利用openpyxl库遍历Sheet的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持毛票票。