Lists are ordered collections of items that you can change (mutable). They can hold different types of data — strings, numbers, or even other lists!
Here's how to make a list and print it out.
Access list items by index and add new items with append()
.
Use a for
loop to print each item in a list.
append()
, remove()
, and len()
to work with them efficiently.