这是我的代码:
print str(float(1/3))+'%'
它显示:
0.0%
但我想要33%
我该怎么办?
这是我的代码:
print str(float(1/3))+'%'
它显示:
0.0%
但我想要33%
我该怎么办?
当前回答
这就是我让它工作的方法,像魔法一样
divideing = a / b
percentage = divideing * 100
print(str(float(percentage))+"%")
其他回答
我用这个
ratio = round(1/3, 2)
print(f"{ratio} %")
output: 0.33 %
Format支持百分比浮点精度类型:
>>> print "{0:.0%}".format(1./3)
33%
如果你不想要整数除法,你可以从__future__导入Python3的除法:
>>> from __future__ import division
>>> 1 / 3
0.3333333333333333
# The above 33% example would could now be written without the explicit
# float conversion:
>>> print "{0:.0f}%".format(1/3 * 100)
33%
# Or even shorter using the format mini language:
>>> print "{:.0%}".format(1/3)
33%
只是为了完整起见,因为我注意到没有人建议这个简单的方法:
>>> print("%.0f%%" % (100 * 1.0/3))
33%
细节:
%.0f表示“打印小数点后0位的浮点数”,所以是%。2f会输出33.33 %%打印文字%。比原来的+'%'更干净一点 1.0而不是1负责强制除法为float,因此不再有0.0
这就是我让它工作的方法,像魔法一样
divideing = a / b
percentage = divideing * 100
print(str(float(percentage))+"%")
对于.format() format方法,有一个更方便的'percent'-formatting选项:
>>> '{:.1%}'.format(1/3.0)
'33.3%'