在 Python 3 vs Python 2.6中,我注意到我可以除以两个整数得到一个浮点数。如何恢复 Python 2.6的行为?
是否有其他获取 int/int = int 的方法?
试试这个:
a = 1 b = 2 int_div = a // b