Run these two commands in Python:
print(int(822981260158260520/2))
print(int(822981260158260520//2))
The second one prints a correct answer but the first one does not. The difference is as big as 20. How did this happen? Is it a Python bug?
Run these two commands in Python:
print(int(822981260158260520/2))
print(int(822981260158260520//2))
The second one prints a correct answer but the first one does not. The difference is as big as 20. How did this happen? Is it a Python bug?