Skip to content

Commit 815b9bb

Browse files
authored
fix(curriculum): update text in lecture-working-with-loops-and-sequences (freeCodeCamp#64381)
1 parent ff83419 commit 815b9bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

curriculum/challenges/english/blocks/lecture-working-with-loops-and-sequences/67fe8399c41a212871025f96.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dashedName: what-are-lists-and-how-do-they-work
99

1010
Over the next few lessons we are going to learn about lists, tuples, and ranges, which are three basic sequence types used in Python.
1111

12-
The list data type is an ordered sequence of elements that can be comprised of strings, numbers, or even other lists. Similar to JavaScript, lists are mutable and use zero-based indexing, meaning that the first element of the list is at index zero.
12+
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.
1313

1414
Here is the basic syntax for a list:
1515

0 commit comments

Comments
 (0)