Lists in Python are ordered collections of things. We create a list using square brackets, with items separated by commas. Items can be of any type, though typically the same type. Containment can be checked using the in operator.
We can modify a list by appending items at the end using the append method, removing items using the pop method, and indexing to access items based on their position. Append and pop methods are mutative operations on lists.
Collection
[
|
...
]