Tuple
Immutable, ordered series, traditionally containing different objects
Advantages: Immutable and ordered. Relatively efficient memory usage (more than lists).
Disadvantages: Searching is O(n). Hard to understand for many Python newcomers.
Creating
Convert from another type
Iterating over the elements
Iterating over the sorted elements
Last updated