python 写入 Excel 遇到 Exception: Attempt to overwrite cell

使用 xlwt 建表时出现 Exception: Attempt to overwrite cell

这是由于在建表的时候对一个单元格重复操作:

sheet.xls.add_sheet(“infoPlist”)

解决办法如下:

添加 cell_overwrite_ok=True

sheet.add_sheet(“infoPlist”,cell_overwrite_ok=True)