如何使用xlwt设置工作表布局(从右到左)?
我正在使用xlwt编写Excel工作表,但是我的数据是从右到左,并且我想将工作表布局从右到左设置(与Microsoft Excel的“页面布局”选项卡相同)
解决方法:
import xlwt
wb = xlwt.Workbook()
for shx in 0, 1:
ws = wb.add_sheet("S%d" % shx)
# Excel 2003: Tools > Options > International > View current sheet right-to-left
# Excel 2007: Page Layout > Sheet Right-to-Left
ws.cols_right_to_left = shx
ws.write(0, 0, "qwerty")
wb.save("colsR2L.xls")