|
|
|
|
|
by hcrean
748 days ago
|
|
I am highly reluctant to use type casting as a mathematical function!! I was burnt by early languages struggling with this problem... Even modern languages still have issues with this! Try running this in Python3.11 ```
float(9007199254740993) == int(9007199254740992)
``` |
|