您的位置:首页 > 编程语言 > Python开发

Python利用openpyxl库遍历Sheet的实例

2018-05-03 15:26 976 查看

方法一,利用 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利用openpyxl库遍历Sheet的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

您可能感兴趣的文章:

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  python openpyxl 遍历 Sheet