bool and int

Dino dino at no.spam.ar
Mon Jan 23 23:22:00 EST 2023


$ python
Python 3.8.10 (default, Mar 15 2022, 12:22:08)
[GCC 9.4.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
 >>> b = True
 >>> isinstance(b,bool)
True
 >>> isinstance(b,int)
True
 >>>

WTF!



More information about the Python-list mailing list