我正在尝试合并 excel 文件的一行中的 4 列。此链接有一些关于如何为两行执行此操作的建议:How to write a cell with multiple columns in xlwt? 它用于合并两列和两行的行:
sheet.write_merge(0, 0, 0, 1, 'Long Cell')
但是,当我尝试仅合并 4 行时,相同的代码语法不起作用。我的代码:
sh.write_merge(0,4,0,5,0,6,0,7,'Start point\nCo-ordinates')
我基本上需要这样的东西。
繁星coding
相关分类