python设置excel文本格式为数字不生效解决

2022/6/22 1:22:21

本文主要是介绍python设置excel文本格式为数字不生效解决,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

问题描述:
  设置excel单元格百分比格式为数字老是不生效

sheet.cell(row=1, column=5).number_format = '0.00%'

修改代码给该单元格赋值的语句

原代码:

sheet.cell(row=1, column=5).value = '{:.2%}'.format(float(item['this_week_p2_bug']) / float(item['this_week_total_bug']))

修改后代码:

sheet.cell(row=1, column=5).value = round(float(item['this_week_p1_bug']) / float(item['this_week_total_bug']), 2)

成功

 



这篇关于python设置excel文本格式为数字不生效解决的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程