FIB Operator for testing if equal. FIB Operator for testing if not equal. FIB Operator for testing if less 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. FIB Operator for boolean or. FIB Operator for boolean negation. FIB Python keyword for checking a condition (two letter word.) FIB Python keyword for a chain of different conditions to check (four letter word that is not else). FIB Python keyword that goes with if to have code that runs if the condition if False (four letter word). FIB Programming concept... Type of operator that applies to two things (as opposed to applying to one thing). FIB Programming concept... Type of operator that applies to one thing (as opposed to applying to two things). FIB Evaluate the python expression '1' + '2' FIB Evaluate the python expression '2' * 3 FIB Evaluate the python expression 4 + 5 * 6 FIB Evaluate the python expression 4 + 1 * 2 ** 3 FIB Evaluate the python expression 3 < 4 and 4 > 5 FIB Evaluate the python expression 2 <= 3 or 3 >= 4 FIB Evaluate the python expression 1 < 0 and 1 < 3 or 3 >= 2 and 2 < 4 FIB Evaluate the python expression '3' != 3 FIB Evaluate the python expression 1 - 5 // 2 FIB Give one line of python code to do: boolean expression to test if variable grade is between 90 and 100. FIB Give one line of python code to do: boolean expression to test if variable color is 'red', 'green', or 'blue'. FIB Give one line of python code to do: boolean expression to test if variable pi is within .001 of 3.14159 FIB Give one line of python code to do: print average of 2, 4, 8, and 16. FIB Give one line of python code to do: print 2 + 4, 2 - 4, 2 * 4, 2 ** 4