这篇文章主要介绍了关于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 表中最大行和列的值,然后遍历
相关推荐:
解析python利用pickle模块完成增删改查等一些功能
以上就是python利用openpyxl库遍历sheet的实例的详细内容。