When solving a problem in leetcode, I found:
>>> -6/132
-1
in python, which seems a bit weird, as it behaves different from c++ and java.
It seems that c++ and java is using round to zero mechanism and python is using round to -∞ mechanism.
Did python do this for any special purposes?