FIB Operator for testing if equal. == FIB Operator for testing if not equal. != FIB Operator for testing if greater than. > FIB Operator for testing if less than or equal to. <= FIB Operator for testing if greater than or equal to. >= FIB Operator for boolean and. and FIB Operator for boolean or. or FIB Operator for boolean negation. not FIB Python keyword for checking a condition (two letter word.) if FIB Python keyword for a chain of different conditions to check (four letter word that is not else). elif FIB Python keyword that goes with if to have code that runs if the condition if False (four letter word). else FIB Programming concept... Type of operator that applies to two things (as opposed to applying to one thing). binary FIB Programming concept... Type of operator that applies to one thing (as opposed to applying to two things). unary FIB Evaluate the python expression '12' + '34' 1234 FIB Evaluate the python expression '3' * 2 33 FIB Evaluate the python expression 4 * 5 + 6 26 FIB Evaluate the python expression 1 + 3 ** 2 - 3 7 FIB Evaluate the python expression 3 < 4 and 4 > 5 FALSE FIB Evaluate the python expression 2 <= 3 or 3 >= 4 TRUE FIB Evaluate the python expression 0 <= 0 and 1 < 3 or 2 >= 3 and 2 < 4 TRUE FIB Evaluate the python expression '3' == 3 FALSE FIB Evaluate the python expression 1 - 10 // 4 -1 FIB Give one line of python code to do: boolean expression to test if variable grade is between 0 and 50. grade >= 0 and grade <= 50 FIB Give one line of python code to do: boolean expression to test if variable color is 'red', 'green', or 'blue'. color == 'red' or color == 'green' or color == 'blue' FIB Give one line of python code to do: boolean expression to test if variable e is within .1 of 2.71828 e >= 2.71828 - .1 and e <= 2.71828 + .1 FIB Give one line of python code to do: print sum of 1, 3, 9, 27 print(1+3+9+27) FIB Give one line of python code to do: print 2 + 3, 2 * 3, and 2 ** 3" "print(2+3, 2 * 3, 2 ** 3)