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