Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
488 views
in Technique[技术] by (71.8m points)

python - How to iterate over all rows in an Excel Table using OpenPyXL?

The documentation of OpenPyXL for Excel Tables don't mention how to iterate over values in the table (see here).

What would be an effecient way of doing it?

question from:https://stackoverflow.com/questions/65895165/how-to-iterate-over-all-rows-in-an-excel-table-using-openpyxl

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

I came up with the following function to do it.

from typing import Any, Dict, Generator

from openpyxl.worksheet.table import Table
from openpyxl.utils import rows_from_range

TableRow = Dict[str, Any]

def iter_table_rows(tb:Table) -> Generator[TableRow, None, None]:
    """Iterate over rows from a table with headers (row as dictionary)"""
    def get_row_values(row_cell_ref):
        return [ws[c].value for c in row_cell_ref]
    
    iter_rows = rows_from_range(tb.ref)
    headers = get_row_values(next(iter_rows))
    
    for row_cells in iter_rows:
        yield {h:v for h,v in zip(headers, get_row_values(row_cells))}


tb = ws.tables["MyTable"]
for row in iter_table_rows(tb):
    print(row)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...