TypeError:write()最多需要5个参数(给定6个)Python Excel

时间:2014-12-09 05:39:56

标签: python excel

我需要输入这个参数。但python不让我输入超过5.有没有办法?

sheet.write(26, 0, "Index", center, bold, timeFormat)

1 个答案:

答案 0 :(得分:0)

您可以通过将属性字典传递给add_format()构造函数来设置多个格式属性:

format = workbook.add_format({'bold': True, 'align': 'center'})

然后,您可以调用:

,而不是分别传递'center'和'bold'
sheet.write(26, 0, "Index", format, timeFormat)