11.8. Sequences: Strings, Lists, and Tuples - Oh My!¶
I have focused on lists of tuples, but almost all of the examples in this chapter also work with lists of lists, tuples of tuples, and tuples of lists. To avoid enumerating the possible combinations, it is sometimes easier to talk about sequences of sequences.
In many contexts, the different kinds of sequences (strings, lists, and tuples) can be used interchangeably. So how and why do you choose one over the others?
To start with the obvious, strings are more limited than other sequences because the elements have to be characters. They are also (with the exception of lists) immutable. If you need the ability to change the characters in a string (as opposed to creating a new string), you might want to use a list of characters instead.
Lists are more common than tuples, mostly because they are mutable. But there are a few cases where you might prefer tuples:
In some contexts, like a return
statement, it is syntactically simpler to create a tuple than a list. In other contexts, you might prefer a list.
If you want to use a sequence as a dictionary key, you have to use an immutable type like a tuple or string.
If you are passing a sequence as an argument to a function, using tuples reduces the potential for unexpected behavior due to aliasing.
Because tuples are immutable, they don’t provide methods like
sort
and reverse
, which modify existing lists.
However Python provides the built-in functions sorted
and
reversed
, which take any sequence as a parameter and return
a new sequence with the same elements in a different order.
- Tuples
- Incorrect! Tuples are immutable (there was even a whole section of this chapter titled that!). Try again.
- Strings
- Incorrect! Strings are immutable. Try again.
- Lists
- Correct! Lists are mutable, which makes them easier to use than immutable objects.
- Dictionaries
- Correct! Dictionaries are also mutable.
11-9-2: Which of the following objects are mutable? Select all that apply.
- iterable (i.e. the sequence that will be sorted)
- Incorrect! The iterable is necessary to use sorted(). Try again.
- key
- Correct! The key can be used to sort the iterable in a specific manner, but is not required to use this function.
- reverse
- Correct! Reverse is an optional parameter that, when set true, will sort the iterable in reverse (descending) order.
11-9-3: The following are the parameters for the sorted() function. Which are optional?