XlsxWriter无法设置标头

时间:2017-01-17 18:39:46

标签: python xlsxwriter

此代码适用于期望3 set_header s()的所有行 有什么想法吗?

ws.set_print_scale(40)
ws.set_header('&L&F')
ws.set_header('&CNewCo Inc.')
ws.set_header('&R&D')
ws.set_portrait()

f1h = wb.add_format()
ws.set_column(0, 0, 5)

1 个答案:

答案 0 :(得分:3)

您应该发出 set_header()命令:

ws.set_header('&L&F &CNewCo Inc. &R&D')