openpyxl使用sheet.rows或sheet.columns报TypeError: 'generator' object is not subscriptable解决方式(示例

Posted zhmiao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了openpyxl使用sheet.rows或sheet.columns报TypeError: 'generator' object is not subscriptable解决方式(示例相关的知识,希望对你有一定的参考价值。

技术图片

 

解决方案:

   因为新版本的openpyxl使用rows或者columns返回一个生成器所以可以使用List来解决报错问题

    

>>> sheet.columns[0]
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: generator object is not subscriptable
>>> list(sheet.columns)[0]
(<Cell Sheet1.A1>, <Cell Sheet1.A2>, <Cell Sheet1.A3>, <Cell Sheet1.A4>
>>> list(sheet.columns)[1]
(<Cell Sheet1.B1>, <Cell Sheet1.B2>, <Cell Sheet1.B3>, <Cell Sheet1.B4>

 

以上是关于openpyxl使用sheet.rows或sheet.columns报TypeError: 'generator' object is not subscriptable解决方式(示例的主要内容,如果未能解决你的问题,请参考以下文章

修改Excel

python针对excel的读写操作-----openpyxl

将 pandas Series 或 DataFrame 列插入现有 Excel 文件的第一个空列(使用 OpenPyXL?)

python中openpyxl读取或写信excel文件

如何使用openpyxl读取和修改Excel中的公式,实现自动化计算?

shee