pyuser@deyu:~/zzz$ python Python 3.12.9 (main, Aug 14 2025, 00:00:00) [GCC 14.2.1 20250110 (Red Hat 14.2.1-7)] on linux Type "help", "copyright", "credits" or "license" for more information. >>> x=True >>> y=False >>> print(type(x),type(y)) <class 'bool'> <class 'bool'>
>>> print(int(x),int(y)) 1 0 >>> quit()