Python does integer division when both operands are integers. The behavior of Python's division operators have changed from Python 2.x and 3.x (see also Integer Division ).
a, b, c, d, e = 3, 2, 2.0, -3, 10
Python 2.x2.7
In Python 2 the result of the ' / ' operator depends on the type of the nu...