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.
not
False
True
print(not True) # Prints: False print(not False) # Prints: True