python iOS string 转excel 遇到Exception: Attempt to overwrite cell: sheetname='Android' rowx=5 colx=

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

sheet.write(“infoPlist”)

解决办法如下:
添加cell_overwrite_ok=True

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

 

并没有重复操作,但一直是报这个错,添加上去就正常了。

你可能感兴趣的:(python)