Boolean Operators:
*
and
*
or
*
not
It returns the opposite of the following statement:
x = True
y = not x # y = False
x = False
y = not x # y = True