Python 3 integer division [duplicate]
Each Answer to this Q is separated by one/two green lines.
The answers/resolutions are collected from stackoverflow, are licensed under cc by-sa 2.5 , cc by-sa 3.0 and cc by-sa 4.0 .
Each Answer to this Q is separated by one/two green lines.
In Python 3 vs Python 2.6, I’ve noticed that I can divide two integers and get a float. How do you get the Python 2.6 behaviour back?
Is there a different method to get int/int = int?