Python Documents says,
For floating point numbers, this truncates towards zero. https://docs.python.org/3/library/functions.html?highlight=int#int
But when I tried assign a large float number to an int () function, it doesn't work well.
>>> int(11111111111111111/2)
5555555555555556
>>> 11111111111111111//2
5555555555555555
What happen?? (rounding error??)