码迷,mamicode.com
首页 > 编程语言 > 详细

Python 输出百分比

时间:2018-09-14 23:13:48      阅读:309      评论:0      收藏:0      [点我收藏+]

标签:color   使用   百分比   key   指定   不显示   0.00   oat   python3   

注:python3环境试验

0x00 使用参数格式化{:2%}

{:.2%}: 显示小数点后2位

print(‘{:.2%}‘.format(10/50))  #percent: 20.00%

 {:.0%}: 不显示小数点

print(‘{:.0%}‘.format(10/50))  #percent: 20%

 

0x01 格式化为float

{:.2f}%:显示小数点后2位

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))

上面指定了顺序

输出:test2: 40.0%, test1: 80.0%

Python 输出百分比

标签:color   使用   百分比   key   指定   不显示   0.00   oat   python3   

原文地址:https://www.cnblogs.com/alummox/p/9649010.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!