码迷,mamicode.com
首页 > 其他好文 > 详细

如何在xlwt中编写多个列的单元格?

时间:2019-03-16 21:59:39      阅读:278      评论:0      收藏:0      [点我收藏+]

标签:div   sheet   merge   span   class   style   write   参数   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中编写多个列的单元格?

标签:div   sheet   merge   span   class   style   write   参数   xlwt   

原文地址:https://www.cnblogs.com/sxinfo/p/10544517.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!