Bootstrap

xlwt set style making error: More than 4094 XFs (styles)

使用Xlwt,当内容过多时,会报错:More than 4094 XFs (styles)

解决方法:

wb = xlwt.Workbook(style_compression=2)

使用style_compression=2,可以解决问题。

;