简单的Python计算是错误的

时间:2015-11-13 16:26:40

标签: python python-2.7 math floating-point division

现在这可能是我非常愚蠢,但请看下面的代码。

我正在尝试计算出我运行脚本时已经消耗的碳水化合物目标的百分比。我得到总数并将其存储在carbsConsumedcarbsGoal中。 carbsPercent然后计算消耗的百分比。但是,carbsPercent每次都返回0。有什么想法吗?

#!/usr/bin/env python2.7
import myfitnesspal
from datetime import datetime

username = 'someusername'
password = 'somepassword'

date = datetime.now()


client = myfitnesspal.Client(username, password)
day = client.get_date(date.year, date.month, date.day)
#day = client.get_date(2015,11,12)

carbs = 'carbohydrates'

carbsConsumed = day.totals[carbs]
carbsGoal = day.goals[carbs]
carbsPercent = (carbsConsumed / carbsGoal) * 100

print 'Carbs consumed: ' + str(carbsConsumed)
print 'Carbs goal: ' + str(carbsGoal)
print 'Percentage consumed: ' + str(carbsPercent)

2 个答案:

答案 0 :(得分:5)

试试这个:

 carbsPercent = (float(carbsConsumed) / carbsGoal) * 100

问题是在Python 2.7中,默认的除法模式是整数除法,因此1000/1200 = 0.强制Python改变的方法是将至少一个操作数IN THE DIVISION操作转换为浮点数。 / p>

答案 1 :(得分:4)

对于易于移植的代码,请在python2中查看https://stackoverflow.com/a/10768737/610569

from __future__ import division
carbsPercent = (carbsConsumed / carbsGoal) * 100

E.g。

$ python
>>> from __future__ import division
>>> 6 / 5
1.2

$ python3
>>> 6 / 5
1.2