Sometimes we need to test two values for equality, or to see which value is greater. The symbols we use for this are called comparison operators. Pay attention to the check for equality, and clearly distinguish between this check (==) and the assignment operator (=) we saw earlier.
In Python, to check if two values are equal, use the == operator. I tried these out at the Python command prompt, results are in the right-most column.