Python / Basics
T = True F = False # and, or T or F # True T and (T and F) # False # not not T # False not (not T) # True # equality 1 == 2 # False 1 != 2 # True
View on GitHub