在Python3与Python2.6中,我注意到我可以将两个整数相除并得到一个浮点数。如何恢复Python2.6的行为?是否有其他方法获取int / int = int?
尝试这个:
a = 1 b = 2 int_div = a // b