Data Structures
Builtin Python data structures:
- Tuple: immutable ordered collection
- List: mutable ordered collection
- Dictionary: unordered
{key, value}
mapping - Sets: unordered collection of unique items
Popular data structures provided by external modules:
- numpy array
- pandas dataframe