I'm trying to cast a large float to an int in python. A simple example is: int(1648083600123123000.0)
Why does this get cast to 1648083600123122944
instead of 1648083600123123000
?
I'm trying to cast a large float to an int in python. A simple example is: int(1648083600123123000.0)
Why does this get cast to 1648083600123122944
instead of 1648083600123123000
?