Collections
Programs often need to work with groups of related values. Collections provide structured ways to store and access multiple items. They are fundamental to everyday Python programming.
- Lists — Ordered sequences of values.
- Dictionaries — Key–value mappings for structured data.
- Iterating collections — Looping over elements to process items.