COMPARISONS AND BOOLEAN OPERATIONS comparisons (these return True) 5 > 3 5 >= 3 5 != 3 5 == 5 boolean operations (these return True) 5 > 3 and 6 > 3 5 > 3 or 5 < 3 not False False or not False and True # evaluation order: not, and, or