Overview of different collection types in Python
Key collections: List, Tuple, Set, Dictionary
Definition: An ordered and changeable collection that allows duplicate members.
Characteristics:
Ordered
Changeable
Allows duplicates
Definition: An ordered and unchangeable collection that allows duplicate members.
Written with round brackets
Unchangeable
Indexed (first item: index [0])
Example of creating a tuple:
`tuple1 = (