如何将元组转换为openpyxl中的列表

时间:2019-02-07 16:22:41

标签: python-3.x

我在理解自己编写的脚本时遇到了问题。总是出现错误: TypeError:“元组”对象不支持项目分配 当我在以下脚本中使用“ c3”

for i in range(cr1):
    for row, c3 in enumerate(olah_sheet, start=1):
        olah_sheet.cell(row=row + maks + i, column=3)
        c3 = sh.cell(row=115 + i, column=2)

因为我在openpyxl中使用它,以便将数据添加到预先存在的数据中。请给我一个建议,如何创建脚本结构。

0 个答案:

没有答案