Tried in both Objective-C (Xcode) and Python (terminal) and (1/6)*(66.900009-62.852596) evaluates to zero both times. Anyone know why this is? Shouldn't it be 0.26246?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You are doing integer arithmetic on |
|||
|
|
|
The avoid doing accidental floor division with integer imports, do a
The future module is responsible for enabling features that will be turned out by default in Python 3. |
|||||
|
/is true division by default, so you get the expected result. You can also emulate this in Python 2.x by doingfrom __future__ import division. – Lattyware Apr 29 '12 at 18:14(1./6)or(1/6.)will work. – alan Apr 29 '12 at 18:20