我需要输入这个参数。但python不让我输入超过5.有没有办法?
sheet.write(26, 0, "Index", center, bold, timeFormat)
答案 0 :(得分:0)
您可以通过将属性字典传递给add_format()构造函数来设置多个格式属性:
format = workbook.add_format({'bold': True, 'align': 'center'})
然后,您可以调用:
,而不是分别传递'center'和'bold'sheet.write(26, 0, "Index", format, timeFormat)