python 使用 xlwt 写入单元格时,如何合并单元格
天蓬老师
天蓬老师 2017-04-17 14:31:35
0
1
897

我想展示成这样:

----------------
|     名称      |
----------------
| 1    | 2     |
----------------

用下列代码写入:

sheet.write(0, 0, '名称')
sheet.write(1, 0, 1)
sheet.write(1, 1, 2)

但实际展示成了:

--------------------
|    名称    |      |
--------------------
| 1         | 2    |
--------------------

求解

天蓬老师
天蓬老师

欢迎选择我的课程,让我们一起见证您的进步~~

全部回覆(1)
PHPzhong

stackoverflow上幾乎有相同的問題:
http://stackoverflow.com/questions/19672760/how-to-write-a-cell-with-multiple-columns-in-xlwt

程式碼就是這樣了:

sheet.write_merge(0, 0, 0, 1, 'Long Cell')
sheet.write(1, 0, 1)
sheet.write(1, 1, 2)
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板