Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
コードの最後のブロックで、こちらの回答のコードを使用してこれを行うつもりでした。ただしfor cell in ws.iter_rows(range_string=range_expr):、「ワークシートオブジェクトには属性 iter_rows がありません」というエラーが表示されます。ここで何が間違っているのか分かりますか?
for cell in ws.iter_rows(range_string=range_expr):
必要なのは、ワークブックの宣言を次のように変更することだけでした:wb = load_workbook('path/doc.xls', use_iterators=True)に use_iterators パラメータを追加します。簡単な問題、簡単な解決策:)
wb = load_workbook('path/doc.xls', use_iterators=True)