From 4f0231c6bcdf199bf16661ee47697af55eff796f Mon Sep 17 00:00:00 2001 From: Jeevan Pratheek A Date: Wed, 14 Jan 2026 16:18:17 +0530 Subject: [PATCH] fix: replace values with vowels (#65147) --- .../6839e3ea328b630cf5fca9ac.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/blocks/lecture-working-with-loops-and-sequences/6839e3ea328b630cf5fca9ac.md b/curriculum/challenges/english/blocks/lecture-working-with-loops-and-sequences/6839e3ea328b630cf5fca9ac.md index b14da7a492c..c91f15258bb 100644 --- a/curriculum/challenges/english/blocks/lecture-working-with-loops-and-sequences/6839e3ea328b630cf5fca9ac.md +++ b/curriculum/challenges/english/blocks/lecture-working-with-loops-and-sequences/6839e3ea328b630cf5fca9ac.md @@ -144,7 +144,7 @@ for word in words: print(f"'{word}' has no vowels") ``` -In this example we have a list of random words, and a `for` loop is used to loop through each word. Inside the outer `for` loop, we have another `for` loop to loop through each letter of each word. If the lowercase version of the letter is a vowel, we print the word followed by what vowels it contains, then break out of the inner loop. If the word contains no values, then we print a message indicating that. +In this example we have a list of random words, and a `for` loop is used to loop through each word. Inside the outer `for` loop, we have another `for` loop to loop through each letter of each word. If the lowercase version of the letter is a vowel, we print the word followed by what vowels it contains, then break out of the inner loop. If the word contains no vowels, then we print a message indicating that. Here is what the result looks like in the console: