Lists are ordered groups of items. Lists automatically change in size as items are put in and removed.

len()

.pop()

.extend(other_list)

.index(elem)

.append()

.remove(elem)

+ or +=

.insert(index, elem)

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