程序员最近都爱上了这个网站  程序员们快来瞅瞅吧!  it98k网:it98k.com

本站消息

站长简介/公众号

  出租广告位,需要合作请联系站长

+关注
已关注

分类  

暂无分类

标签  

暂无标签

日期归档  

暂无数据

我们如何在Python openpyxl包中使用iter_rows()?

发布于2019-09-11 19:45     阅读(284)     评论(0)     点赞(19)     收藏(4)


我正在使用openpyxlPython(Canopy)来使用excel文件。我们在此链接中有本教程:LINK

you can also use the openpyxl.worksheet.Worksheet.iter_rows() method:

>>> tuple(ws.iter_rows('A1:C2'))
((<Cell Sheet1.A1>, <Cell Sheet1.B1>, <Cell Sheet1.C1>),
 (<Cell Sheet1.A2>, <Cell Sheet1.B2>, <Cell Sheet1.C2>))

>>> for row in ws.iter_rows('A1:C2'):
...        for cell in row:
...            print cell
<Cell Sheet1.A1>
<Cell Sheet1.B1>
<Cell Sheet1.C1>
<Cell Sheet1.A2>
<Cell Sheet1.B2>
<Cell Sheet1.C2>

我们如何openpyxl.worksheet.Worksheet.iter_rows()在python中导入方法?我用过这段代码:

import openpyxl as op
ms = op.load_workbook('mtest.xlsx')

ws = ms.active

op.worksheet.Worksheet.iter_rows()

此代码返回:

type object 'Worksheet' has no attribute 'iter_rows' 

问题是什么?


解决方案


教程所示,您需要iter_rows在工作表的实例上调用该方法,例如:

>>> for row in ws.iter_rows('A1:C2'):
...        for cell in row:
...            print cell

要么

>>> for row in ws.iter_rows(min_row=1, max_col=3, max_row=2):
...    for cell in row:
...        print(cell)
<Cell Sheet1.A1>
<Cell Sheet1.B1>
<Cell Sheet1.C1>
<Cell Sheet1.A2>
<Cell Sheet1.B2>
<Cell Sheet1.C2>

正如您的错误消息所述,您在Worksheet 类型上调用它,这将无效; 它需要在一个对象调用

op.worksheet.Worksheet.iter_rows()  # wrong

另请参阅另一个答案中的此示例

对于旧版本的openpyxl,您可能需要确保在加载工作簿时启用迭代器 - 请参阅此主题更新版本不需要这样做。

这是一个完整的例子,我刚刚在Python REPL中测试过(使用openpyxl 1.8.3):

>>> import openpyxl as op
>>> wb = op.load_workbook('/tmp/test.xlsx', use_iterators=True)
>>> ws = wb.active
>>> for row in ws.iter_rows():
...   for cell in row:
...     print cell
... 
RawCell(row=1, column='A', coordinate='A1', internal_value=1.0, data_type='n', style_id='0', number_format='general')
RawCell(row=1, column='B', coordinate='B1', internal_value=10.0, data_type='n', style_id='0', number_format='general')
...


所属网站分类: 技术文章 > 问答

作者:黑洞官方问答小能手

链接:https://www.pythonheidong.com/blog/article/108055/d8adcee7cbb59d1ee68c/

来源:python黑洞网

任何形式的转载都请注明出处,如有侵权 一经发现 必将追究其法律责任

19 0
收藏该文
已收藏

评论内容:(最多支持255个字符)