Introduction to Lists
Learn about the usage of lists in Python.
We'll cover the following...
A container is an entity that contains multiple data items. It is also known as a collection or a compound data type.
Python has the following container data types:
- Lists
- Tuples
- Sets
- Dictionaries
What are lists?
A list can grow or shrink during the execution ...