How we can use iter_rows() in Python openpyxl package?

匆匆过客 提交于 2019-11-30 06:58:53
DNA

As shown in the tutorial, you need to call the iter_rows method on an instance of a worksheet, for example:

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

or

>>> 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>

As your error message states, you are calling it on the Worksheet type, which won't work; it needs to be called on an object:

op.worksheet.Worksheet.iter_rows()  # wrong

See also this example in another answer.

For older versions of openpyxl, you may need to ensure that you enable iterators when loading your workbook - see this thread. This isn't required for more recent versions.

Here's a complete example which I just tested in the Python REPL (with 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')
...
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!