我正在尝试使用带行的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)。不执行任何操作
答案 0 :(得分:21)
你应该告诉xlwt行高和默认字体高度不匹配:
sheet.row(4).height_mismatch = True
sheet.row(4).height = 256*20