Lesson 11: Combining Conditions With And, Or and Not
What happens when Python needs one decision based on several true-or-false questions? A comparison can answer one question, such as whether a score reaches 50, but a programme may need to combine several answers. This section explains how separate comparison expressions become one compound condition and how that condition can control an `if` statement.
