Posts by epilys@chaos.social
(DIR) Post #B5JcbNDX8ShgO8Fog4 by epilys@chaos.social
0 likes, 0 repeats
@mntmn Fun fact, since everything in Python is an object, implementations can intern small integers for efficiency (Note that I'm using `is` instead of `==`)$ python3Python 3.13.5 (main, Jun 25 2025, 18:55:22) [GCC 14.2.0] on linux>>> a = 500>>> b = 500>>> a is bFalse>>> a = 100>>> b = 100>>> a is bTrue