答案 0 :(得分:0)
如果您使用的是python 2,
height/total * 100
返回整数。
我建议:
height/total * 100.0
编辑: 我建议:
float(height)/total * 100
以便python知道您要浮动。我之前的答案将数字转换为浮点数,但是只有一次为时已晚。整数除法(在python 2中是默认设置)与python 3中的int(height/total)
等效。要更改此行为,还可以添加:
from __future__ import division