Python 输出百分比
2021-06-28 14:06
标签:color 使用 百分比 key 指定 不显示 0.00 oat python3 注:python3环境试验 {:.2f}%:显示小数点后2位 上面指定了顺序 输出:test Python 输出百分比 标签:color 使用 百分比 key 指定 不显示 0.00 oat python3 原文地址:https://www.cnblogs.com/alummox/p/9649010.html0x00 使用参数格式化{:2%}
{:.2%}
: 显示小数点后2位print(‘{:.2%}‘.format(10/50)) #percent: 20.00%
{:.0%}
: 不显示小数点print(‘{:.0%}‘.format(10/50)) #percent: 20%
0x01 格式化为float
print(‘{:.2f}%‘.format(10/50)) #percent: 20.00%
{:.0f}%
: 不显示小数点print(‘{:.0f}%‘.format(10/50)) #percent: 20%
0x02 补充说明
{ }
的意思是对应format()
的一个参数,按默认顺序对应,参数序号从0开始,{0}
对应format()
的第一个参数,{1}
对应第二个参数。例如:print(‘test1:{1:.1%},
test2:
{0:.1%}‘.format(40/50, 40/100))2: 40.0%, test1: 80.0%