您好,欢迎来到吉趣旅游网。
搜索
您的当前位置:首页Python利用openpyxl库遍历Sheet的实例

Python利用openpyxl库遍历Sheet的实例

来源:吉趣旅游网

这篇文章主要介绍了关于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 表中最大行和列的值,然后遍历

Copyright © 2019- jqkq.cn 版权所有 赣ICP备2024042794号-4

违法及侵权请联系:TEL:199 1889 7713 E-MAIL:2724546146@qq.com

本站由北京市万商天勤律师事务所王兴未律师提供法律服务