脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - Python - Python利用openpyxl库遍历Sheet的实例

Python利用openpyxl库遍历Sheet的实例

2021-02-15 00:20苦逼工科男 Python

今天小编就为大家带来一篇Python利用openpyxl库遍历Sheet的实例,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

方法一,利用 sheet.iter_rows() 获取 Sheet1 表中的所有行,然后遍历

?
1
2
3
4
5
6
7
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 ---')
?
1
2
3
4
5
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的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/qqyuanhao163/article/details/54976962

延伸 · 阅读

精彩推荐