如何在xlwt中编写多个列的单元格?
Posted 武功震树
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在xlwt中编写多个列的单元格?相关的知识,希望对你有一定的参考价值。
目的,写下面的表格:
---------------- | Long Cell | ---------------- | 1 | 2 | ----------------
如果下面这样写:
sheet.write(0, 0, ‘Long Cell‘) sheet.write(1, 0, 1) sheet.write(1, 1, 2)
结果就是:
-------------------- | Long Cell | | -------------------- | 1 | 2 | --------------------
应该下面这样写:
sheet.write_merge(0, 0, 0, 1, ‘Long Cell‘) #参数分别代表(ROW0,ROW0,COL0,COL1),即 第1行、前2列 sheet.write(1, 0, 1) sheet.write(1, 1, 2)
以上是关于如何在xlwt中编写多个列的单元格?的主要内容,如果未能解决你的问题,请参考以下文章
xls4-想要使用Python的xlwt设置单元格的背景色。