Skip to content

Instantly share code, notes, and snippets.

@ydm
Created January 5, 2025 00:13
Show Gist options
  • Save ydm/d91ae9dac1148846a05357f8c2532e3f to your computer and use it in GitHub Desktop.
Save ydm/d91ae9dac1148846a05357f8c2532e3f to your computer and use it in GitHub Desktop.
```
$ 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
>>>
```
@ydm
Copy link
Author

ydm commented Jan 5, 2025

>>> int(1e+22)
10000000000000000000000
>>> int(1e+23)
99999999999999991611392

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment