Lesson 10: Comparing Values in Python
How can Python tell whether two scores match, or whether one number is bigger than another? It uses a comparison expression: a complete piece of Python code that asks about the relationship between values. The answer is normally one of two Boolean values, True or False. These answers can then guide the decisions made by an if statement.
