x = True y = False print(x and y)
False
a = False b = True print(a or b)
True
x = True print(not x) print(not not x)
False True