- A list is just like it sounds. A list of things in sequence.
- A list value is a list.
- A list can be stored in a variable or passed to a function .
Example list:
['cat', 'bat', 'rat', 'elephant']
- Values inside the list are called items
- Items are comma-delimited
- This is an empty list:
[]