gpt4 book ai didi

python - python xlwt中从右到左的excel页面布局

转载 作者:太空宇宙 更新时间:2023-11-03 15:21:34 26 4
gpt4 key购买 nike

如何使用 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")

关于python - python xlwt中从右到左的excel页面布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14001952/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com