Python XLWT无法指定行高

时间:2013-12-16 14:57:19

标签: python xlwt

我正在尝试使用带行的xlwt。(i)。高,但我没有结果。

我的代码:

import xlwt
book = xlwt.Workbook(encoding='latin-1')
sheet = sheet.add_sheet('KPI.TiempoRespuesta',cell_overwrite_ok=True)
sheet.write(1, 4, "BLABLABLABLABLABLABLABLABLABLABLABLA")
sheet.row(4).height = 256*20
book.save("book.xls")

我想增加单元格高度; /,但是行。(i)。不执行任何操作

1 个答案:

答案 0 :(得分:21)

你应该告诉xlwt行高和默认字体高度不匹配:

sheet.row(4).height_mismatch = True
sheet.row(4).height = 256*20