2012-12-22 63 views
2

如何使用xlwt設置工作表佈局(從右到左)?從右到左Excel中的頁面佈局xlwt

我使用xlwt用於寫入Excel工作表,但是我的數據是從右到左,我想設置紙張佈局從右到左(與Microsoft Excel中的頁面佈局選項卡)

回答

3
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")