Core data types in Python
Core Python data types include numbers, strings, lists, tuples, sets, dictionaries, booleans, and `None`.
- Mutable and immutable types differ
- Some are ordered, some are hash-based
- Choose types based on access and update patterns
Core data types in Python