使用xlwt python合并两个以上的单元格

时间:2018-12-09 12:21:43

标签: python numpy spreadsheet xlwt

我正在尝试在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')

我基本上需要像this.

这样的东西

1 个答案:

答案 0 :(得分:0)

也许是吗?

sh.write_merge(0, 0, 4, 7, 'Start point\nCo-ordinates')