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