Tuples#

Tuples are immutable objects which hold a fixed-size list of other objects. Imagine tuples as a list of pointers to objects, where the number of pointers and the pointers themselve cannot be changed. But note, that the objects the tuple entries point to can change if they are mutable. Object type for tuples is tuple.

Syntax#

Tuples are defined as a comma separated list. Often the list is surrounded by parentheses:

a = (1, 5, 9)                            # a tuple of integers
b = 2, 3, 4                              # works also without parentheses
c = ('some string', 'another_string')    # tuple of strings
d = (42, 'some string', 1.23)            # tuple with mixed types

Tuples with only one item are allowed, too. To distinguish them from single objects, a trailing comma is required.

a = 1       # integer     
b = (1)     # integer
c = 1,      # tuple containing one integer
d = (1,)    # tuple containing one integer

Indexing#

Tuple items can be accessed by index. The first item has index 0, the second index 1, and so on. The length of a tuple is returned by the built-in function len. Indexing with negative numbers gives the items in reverse order.

colors = ('red', 'green', 'blue', 'yellow')

print(colors[2])
print(colors[-1])
print(len(colors))
print(colors)
blue
yellow
4
('red', 'green', 'blue', 'yellow')

Subtuples can be extracted by so called slicing. Simply provide a range of indices: [2:5] gives a new tuple consisting of the items 2, 3, 4. The new tuple is a new object and remains available even if the original tuple vanishes (cf. Garbage Collection).

some_colors = colors[1:3]
print(some_colors[0])
print(some_colors)
green
('green', 'blue')

Extracting every second item can be done by [3:10:2], which gives items with indices 3, 5, 7, 9. The general syntax is [first_index:last_index_plus_one:step]. Here are some more indexing examples:

print(colors[2:])               # from 2 to end
print(colors[2:len(colors)])    # from 2 to end
print(colors[2:-1])             # from 2 to last but one
print(colors[:3])               # from 0 to 3
print(colors[:])                # all
('blue', 'yellow')
('blue', 'yellow')
('blue',)
('red', 'green', 'blue')
('red', 'green', 'blue', 'yellow')

Tuple Assignments#

Tuples can be used for returning more than one value from a function. For this purpose Python provides the following code construct:

a, b, c = 23, 42, 6
print(a, b, c)
23 42 6

That is, we can assigne the contents of a tuple to a tuple of names. Such constructions typically are used if a function returns several return values packed into a tuple.

def integer_division(a, b):

    c = a // b
    d = a % b

    return c, d
    
quotient, remainder = integer_division(100, 13)

print(quotient)
print(remainder)
7
9

Tuples From Lists#

Lists may be converted to tuples via usual type convertion:

some_list = [1, 2, 3, 4, 5]
some_tuple = tuple(some_list)

Note that both list and tuple point to the some items. Items aren’t copied! Modifying (mutable) list items will modify tuple items, too. See Multiple Names and Copies for more details.