Python has 4 primitive data types:
- Integers (ex. 1, 2, 3)
- Float (ex. 1.2, 2.5, 5.8)
- Strings (ex. "Alexandria", "John", "Tony")
- Boolean (True, False)
A list is a data structure in Python that is a mutable, or changeable, ordered sequence of elements.
They use [] brackets and commas to separate objects in the list.