Lists are ordered groups of items. Lists automatically change in size as items are put in and removed.
Creating a list: start and end with brackets, items in the list are separated by commas
A list with one element is not the same thing as that element.
Elements of a list are indexed, starting from 0.
List elements can be accessed individually. Negative indexing works too.
List elements can be changed individually.
Can iterate through a whole list