From 9b853562101ec6e4d86163a06f7b66798cb2f7c8 Mon Sep 17 00:00:00 2001 From: Jeremy Jackson <87815518+jdjaxon@users.noreply.github.com> Date: Thu, 13 Mar 2025 11:03:31 -0400 Subject: [PATCH] Fixed minor typo in example section header on line 293. --- content/tutorials/python/lists.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/tutorials/python/lists.md b/content/tutorials/python/lists.md index 521756e5..c74173fc 100644 --- a/content/tutorials/python/lists.md +++ b/content/tutorials/python/lists.md @@ -290,7 +290,7 @@ print(numbers) # Output: [5, 4, 3, 2, 1] ``` -## **xample**: Filter Messages +## **Example**: Filter Messages When working with lists, you may need to filter out certain elements based on a condition. Python provides a powerful feature called list comprehension to achieve this.