Python利用openpyxl库遍历Sheet的实例
程序员文章站
2022-03-07 10:54:12
...
这篇文章主要介绍了关于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利用openpyxl库遍历Sheet的实例的详细内容,更多请关注其它相关文章!
上一篇: php怎么把数字转换成字符串?
推荐阅读
-
Python利用openpyxl库遍历Sheet的实例
-
Python openpyxl 遍历所有sheet 查找特定字符串的方法
-
python3结合openpyxl库实现excel操作的实例代码
-
Python3利用openpyxl读写Excel文件的方法实例
-
Python利用itchat库向好友或者公众号发消息的实例
-
Python openpyxl 遍历所有sheet 查找特定字符串的方法
-
Python 技术篇-利用pyqt5库读取剪切板已复制数据的格式类型实例演示
-
Python利用Requests库写爬虫的实例详解
-
python3结合openpyxl库实现excel操作的实例代码
-
Python利用Requests库写爬虫的实例详解