From 4b3b1f742cc6ae185b3a70bb8b2ca08cc260f177 Mon Sep 17 00:00:00 2001 From: Satyam Kumar Verman Date: Sat, 15 Nov 2025 13:13:47 -0500 Subject: [PATCH] fix(curriculum): correct minor typo in Python truthy/falsy lesson (#63854) --- .../lecture-introduction-to-python/68480f431e8568b2056b140b.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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