Data Structures
List (list
)
Ordered, mutable (can change data) collections.
Tuple (tuple
)
Ordered, immutable (can not change data) collections.
Set (set
)
Unordered collection of unique elements.
Dictionary (dict
)
Unordered collection of key-value pairs.
Common Errors
Some frequent errors encountered when dealing with Data Structures in Python.