问题
This question already has an answer here:
- Python integer division yields float 4 answers
In Python3 vs Python2.6, I\'ve noticed that I can divide two integers and get a float. How do you get the Python2.6 behaviour back? Is there a different method to get int/int = int?
回答1:
Try this:
a = 1
b = 2
int_div = a // b
来源:https://stackoverflow.com/questions/19507808/python3-integer-division