In Python3 vs Python2.6, I noticed that I can split two integers and get a float. How do you return the behavior of Python2.6? Is there any other way to get int / int = int?
Try the following:
a = 1 b = 2 int_div = a // b