I was working on permutations and came across this difference in python and python3.
PYTHON:
Python 2.7.11+ (default, Jun 2 2016, 19:34:15)
>>> x=2432902008176639999
>>> y=121645100408832000
>>> q=x/y
>>> q
19
Now PYTHON3 :
Python 3.4.4 (default, Apr 17 2016, 16:02:33)
>>> x=2432902008176639999
>>> y=121645100408832000
>>> q=x/y
>>> q
20.0
Can somebody explain this and how to get same results ?