After learning strings, learners need to understand how to store and manage multiple values in Python. This material is a foundation for loops, conditionals, etc.
Scope of Material
This section should introduce core collection concepts, focusing mainly on lists:
.append()
.insert()
.remove()
.pop()
.sort()
.len()
Intro to other collections:
- tuple
- set
- dict
After learning strings, learners need to understand how to store and manage multiple values in Python. This material is a foundation for loops, conditionals, etc.
Scope of Material
This section should introduce core collection concepts, focusing mainly on lists:
What is a list in Python
Creating lists
Accessing elements (indexing)
Modifying list values
List methods that are often used:
.append().insert().remove().pop().sort().len()Intro to other collections: