Python利用openpyxl库遍历Sheet的实例
时间:2020-11-07 21:46:39|栏目:Python代码|点击: 次
方法一,利用 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 表中最大行和列的值,然后遍历
栏 目:Python代码
下一篇:Python抓新型冠状病毒肺炎疫情数据并绘制全国疫情分布的代码实例
本文标题:Python利用openpyxl库遍历Sheet的实例
本文地址:http://www.codeinn.net/misctech/20050.html