The first of the containers we will study
Most languages are very strict about collections and arrays. Python is incredibly lenient.
You add things to lists via append:
mylist.append(something)
https://docs.python.org/2/tutorial/datastructures.html
>>> name = "Elizabeth"
>>> [letter.upper() for letter in name]
['E', 'L', 'I', 'Z', 'A', 'B', 'E', 'T', 'H']