Python3整数除法

在Python3 vs Python2.6中,我注意到我可以分割两个整数并得到一个浮点数。 你如何获得Python2.6的行为? 有没有不同的方法得到int / int = int?

尝试这个:

 a = 1 b = 2 int_div = a // b