diff --git a/curriculum/challenges/english/blocks/lecture-introduction-to-python/68480f431e8568b2056b140b.md b/curriculum/challenges/english/blocks/lecture-introduction-to-python/68480f431e8568b2056b140b.md index c3754208995..2101001b796 100644 --- a/curriculum/challenges/english/blocks/lecture-introduction-to-python/68480f431e8568b2056b140b.md +++ b/curriculum/challenges/english/blocks/lecture-introduction-to-python/68480f431e8568b2056b140b.md @@ -71,7 +71,7 @@ print(is_citizen and age) # 25 In the above example, the number 25 is printed to the terminal because the `and` operator will evaluate the second operand if the first operand is `True`. The `and` operator is known as a short-circuit operator. Short-circuiting means Python checks values from left to right and stops as soon as it determines the final result. -You'll often use `and` within `if` statements to check if multiple conditions are met. Here’s how you can refactor the earlier example to uses the `and` operator instead of nested `if` statements: +You'll often use `and` within `if` statements to check if multiple conditions are met. Here’s how you can refactor the earlier example to use the `and` operator instead of nested `if` statements: ```python is_citizen = True