OpenPyXL - 将我的代码更新为iter_rows()

时间:2014-10-29 00:42:34

标签: python openpyxl

我正在处理一个包含15 000多行的巨大Excel文件。 20列。我尝试使用OpenPyXl更改它:

for row in range(2,864):
copysource = ws.cell(row=i, column=1).value
sportsource = ws.cell(row=i, column=2).value
catsource = ws.cell(row=i, column=3).value #...

但我的记忆被这个野兽的浩瀚杀死了。我试图用iter_rows()更新我的代码,但我还没有进入其他专栏。这就是我到目前为止所拥有的:

for reg_row in reg.iter_rows("A2:A864"):
    for reg_cell in reg_row:
        copysource = reg_cell.value  # 

非常感谢! 克

0 个答案:

没有答案