Boolean values are True or False, representing truth values.
True
False
and
or
not
x = True y = False print(x and y) # False print(x or y) # True print(not x) # False