Tuples#

Programming for Geoscientists Data Science and Machine Learning for Geoscientists

Tuples are constant lists. They can be used like lists to store data but they cannot be modified (they are immutable). They are used for storing multiple values from functions. They are created like lists, but with round brackets:

    tuple1 = (variable1, variable2, variable3)

Tuples can have as many elements as you want and they don’t have to be of the same type. Tuples are used, for example, in string formatting syntax:

    print("text %g, %g" % (no1, no2)) # (no1, no2) is a tuple

For functions that return multiple values, values from tuples can be extracted with this syntax:

    value1, value2 = function1(some_variable)
t = (2, 4, 6, 'temp.pdf')   # Create a tuple.
t =  2, 4, 6, 'temp.pdf'    # Create a tuple, without bracket

print(t[3])                 # Indexing as usual
temp.pdf

What is the purpose of tuples, when lists have more functionality?

  • Tuples cannot be modified, even by accident.

  • They are faster than lists.

  • Widely used in Python.

  • Can be used as keys in dictionaries, while lists can’t.

Exercises#


  • Define a function which will return both maximum and minimum in terms of lexicographical order of a list consisting of tuples (pairs).

HINT: in lexicographical order \((a_1,b_1) > (a_2,b_2)\) if and only if \(a_1 > a_2\) or \((a_1 = a_2\) and \(b_1 > b_2) \)

l = [(1,2), (1,3), (0,7), (0,5)] 
# here (1,3) is maximum and (0,5) is min