REPL

 uv run python
Python 3.14.3 (main, Feb  3 2026, 15:32:20) [Clang 17.0.0 (clang-1700.6.3.2)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> True
True
>>> type(True)
<class 'bool'>
>>> False
False
>>> help(bool)

>>> True and True
True
>>> True and False
False
>>> False and False
False
>>> False and True
False
>>> True or False
True
>>> True or True
True
>>> False or True
True
>>> False or False
False
>>> not True
False
>>> not(True)
False
>>> not(False)
True
>>>

Notes