The tuple is another object that is an ordered collection of objects. It is very similar to a list object, but unlike lists tuples are immutable. Once a tuple is defined it cannot be changed. A tuple is defined by specifying comma-separated sequence of objects enclosed in parentheses.
Like lists, tuples also support any type of Python object as element, including more complex ones, such as lists. When you define a comma-separated sequence without any type of brackets, Python will interpret the sequence as a tuple. Syntax like this is very common in statements and when assigning values to multiple variables on one line.
Because parentheses are also used for other purposes, a special syntax is required to define a tuple with one element.
Why even use a when you can use a ? There are several reasons to choose tuples over lists. First, since tuples are immutable, operations on them are faster. Second, when in need of a constant iterable, you might prefer a data type that cannot be changed so that it can't be modified accidentally. Another reason is that some data structures only support immutable objects, in that case, you'll have to use a instead.
Naturally, functionality is going to be very similar to that of a , except for all syntax and methods that allow you to change the contents of a , which a does not support.
Like lists and strings, tuples also support the same syntax for indexing and slicing.
>>> t = (1, 2, 3, 4, 5) >>> t[2]
|
3
|
>>> t = (1, 2, 3, 4, 5) >>> t[2:5]
|
(3, 4, 5)
|
Both addition and multiplication work the same as they do for the iterables discussed thus far.
>>> (1, 2, 3) + (4, 5, 6)
|
(1, 2, 3, 4, 5, 6)
|
>>> (0,) * 10
|
(0, 0, 0, 0, 0, 0, 0, 0, 0, 0)
|
So do the comparison operators.
>>> (1, 2, 3) < (1, 5, 10)
|
True
|
Since tuples cannot be modified, tuples only support two methods, and , which do work the same as they do for the other iterables discussed.
>>> t = (100, 101, 101, 102, 102, 102) >>> t.count(102)
|
3
|
Membership of certain items can be tested with the keyword.
>>> t = (1, 2, 3) >>> 3 in t
|
True
|
Iterating over the items within the tuple can be accomplished using the same loop syntax as the other iterables.
>>> for item in t: >>> print(item)
|
1 2 3
|
Like lists, we can also perform a tuple comprehension, however unlike lists, we'll have to use casting when using a comprehension, since Python won't recognise parentheses without commas as tuples.
>>> (i for i in range(10))
|
<generator object <genexpr> at 0x000002B21609C190>
|
>>> tuple(i for i in range(10))
|
(0, 1, 2, 3, 4, 5, 6, 7, 8, 9)
|
The process of assigning a tuple to a single variable is referred to as tuple packing.
>>> numbers = 1, 2, 3 >>> print(numbers)
|
(1, 2, 3)
|
Splitting a tuple into multiple variables, is referred to as tuple unpacking.
>>> one, two, three = numbers >>> print(one, two, three)
|
1 2 3
|
The shorthand for defining multiple variables on a single line is a case of tuple unpacking where the tuple is not packed beforehand.
>>> one, two, three = 1, 2, 3 >>> print(one, two, three)
|
1 2 3
|
Additionally, the operator allows for more leeway when unpacking larger tuples. Using it with a variable results in the variable automatically being filled with the values that are not explicitly unpacked. Beware, if this is more than one value the result will be a .
>>> numbers = 1, 2, 3, 4, 5, 6, 7, 8, 9 >>> one, *rest, nine = numbers >>> print(rest)
|
[2, 3, 4, 5, 6, 7, 8]
|
A very useful result of the packing and unpacking feature is that it offers a very convenient way of swapping variable values. This syntax allows you to swap variable values without the use of a temporary variable, which is the standard in most programming languages.
>>> x = 1 >>> y = 2 >>> print(x, y)
|
1 2
|
>>> tmp = x >>> x = y >>> y = tmp >>> print(x, y)
|
2 1
|
>>> x, y = y, x >>> print(x, y)
|
1 2
|