What is a list?
A collection of data.
How is a list structured? Give an example.
listName = [element1, element2, element3]
What is a list called that has no elements?
An empty list.
Each element in a list has an…
Index.
Ex: friends[0]=”Layna”
0 is the index.