From 5680103086b67b6c5e17313d35f94b1a6c66a522 Mon Sep 17 00:00:00 2001 From: ayvkma Date: Sat, 20 Dec 2025 22:53:07 +0530 Subject: [PATCH] fix(curriculum): remove duplicated text in lecture-working-with-loops-and-sequences (#64806) --- .../67fe8399c41a212871025f96.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/blocks/lecture-working-with-loops-and-sequences/67fe8399c41a212871025f96.md b/curriculum/challenges/english/blocks/lecture-working-with-loops-and-sequences/67fe8399c41a212871025f96.md index c608d2c5125..aa8df5adc6c 100644 --- a/curriculum/challenges/english/blocks/lecture-working-with-loops-and-sequences/67fe8399c41a212871025f96.md +++ b/curriculum/challenges/english/blocks/lecture-working-with-loops-and-sequences/67fe8399c41a212871025f96.md @@ -9,7 +9,7 @@ dashedName: what-are-lists-and-how-do-they-work Over the next few lessons we are going to learn about lists, tuples, and ranges, which are three basic sequence types used in Python. -The list data type is an ordered sequence of elements that can be comprised of strings, numbers, or even other lists. The list data type is an ordered sequence of elements that can be comprised of strings, numbers, or even other lists. Lists are mutable and use zero-based indexing, meaning that the first element of the list is at index zero. +The list data type is an ordered sequence of elements that can be comprised of strings, numbers, or even other lists. Lists are mutable and use zero-based indexing, meaning that the first element of the list is at index zero. Here is the basic syntax for a list: