Created
January 5, 2025 00:13
-
-
Save ydm/d91ae9dac1148846a05357f8c2532e3f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
``` | |
$ python | |
Python 3.12.4 (main, Jun 7 2024, 06:33:07) [GCC 14.1.1 20240522] on linux | |
Type "help", "copyright", "credits" or "license" for more information. | |
>>> print(int(1e6) * int(1e18)) | |
1000000000000000000000000 | |
>>> print(int(1e6 * 1e18)) | |
999999999999999983222784 | |
>>> | |
``` |
Author
ydm
commented
Jan 5, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment