We skipped a very important logical operator - not
. The not
operator reverses the result. It returns False
if the input was True
and vice-versa.
print(not True)
# Prints: False
print(not False)
# Prints: True
The operators and
, or
, and not
are ____
operators