Python Language Tuple: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
 
(9 intermediate revisions by the same user not shown)
Line 1: Line 1:
=Internal=
=Internal=
* [[Python_Language#Tuple|Python Language]]
* [[Python_Language#Tuple|Python Language]]
=TODO=
<font color='darkkhaki'>
* TO PROCESS:  [[PyOOP]] "Tuples and named tuples", "Named tuples"
</font>
=Overview=
=Overview=
A tuple is a immutable [[Python_Language#Sequence_Types|sequence type]] that contains zero or more elements and whose elements can be of different types. Once a tuple is defined, you can't add, delete or change items. A tuple is similar to a constant [[Python Language List#Overview|list]], and could be used instead of a list, if we can afford the "list" to be immutable. Naturally, the list's mutating functions  <code>append()</code>, <code>insert()</code> do not exist on tuples. There are several advantages of using a tuple instead of a list: a tuple uses less space than a list and they cannot be mutated by mistake. Positional function arguments can be [[Python_Language_Functions#Gather_Positional_Arguments_with_.2A|grouped together and provided as a tuple]] in the function body (<code>*args</code>).
A tuple is a immutable [[Python_Language#Sequence_Types|sequence type]] that contains zero or more elements and whose elements can be of different types. Once a tuple is defined, you can't add, delete or change items. A tuple is similar to a constant [[Python Language List#Overview|list]], and could be used instead of a list, if we can afford the "list" to be immutable. Naturally, the list's mutating functions  <code>append()</code>, <code>insert()</code> do not exist on tuples. There are several advantages of using a tuple instead of a list: a tuple uses less space than a list and they cannot be mutated by mistake. Positional function arguments can be [[Python_Language_Functions#Gather_Positional_Arguments_with_.2A|grouped together and provided as a tuple]] in the function body (<code>*args</code>).
Line 16: Line 21:
one_element_tuple = (1,)  # the trailing comma is mandatory
one_element_tuple = (1,)  # the trailing comma is mandatory
two_element_tuple = (1,2,)  # for two or more elements, the trailing comma is optional
two_element_tuple = (1,2,)  # for two or more elements, the trailing comma is optional
</syntaxhighlight>
=Access a Tuple=
To access the elements of a tuple, use the same bracket notation as for a list. The index is 0-based:
<syntaxhighlight lang='py'>
t = ('a', 'b', 'c')
assert 'a' == t[0]
</syntaxhighlight>
</syntaxhighlight>


=Conversion from other Data Structures=
=Conversion from other Data Structures=
The <code>tuple()</code> converts lists, or iterables, in general, to tuples:
<syntaxhighlight lang='python'>
l = ['a', 'b', 'c']
t = tuple(l)
print(t)
assert 'a' == t[0]
assert 'b' == t[1]
assert 'c' == t[2]
</syntaxhighlight>


=Tuple Unpacking=
=Tuple Unpacking=
Line 25: Line 45:
t = (1, 'B', 3.0)
t = (1, 'B', 3.0)
a, b, c = t
a, b, c = t
print(a) # will print 1
print(a) # will print 1
print(b) # will print 'B'
print(b) # will print 'B'
print(c) # will print 3.0
print(c) # will print 3.0
</syntaxhighlight>
</syntaxhighlight>


=Exchanging Variable Values=
=Exchanging Variable Values=
Tuples can be used to exchange to variable values without using a third temporary variable.
Tuples can be used to exchange to variable values without using a third temporary variable.
<syntaxhighlight lang='python'>
v1 = 'A'
v2 = 'B'
v1, v2 = v2, v1
print(v1)  # will print B
print(v2)  # will print A
</syntaxhighlight>
=Named Tuples=
=Named Tuples=
Named tuples can be a simple alternative to objects.
Named tuples can be a simple alternative to objects.

Latest revision as of 17:49, 3 February 2023

Internal

TODO

  • TO PROCESS: PyOOP "Tuples and named tuples", "Named tuples"

Overview

A tuple is a immutable sequence type that contains zero or more elements and whose elements can be of different types. Once a tuple is defined, you can't add, delete or change items. A tuple is similar to a constant list, and could be used instead of a list, if we can afford the "list" to be immutable. Naturally, the list's mutating functions append(), insert() do not exist on tuples. There are several advantages of using a tuple instead of a list: a tuple uses less space than a list and they cannot be mutated by mistake. Positional function arguments can be grouped together and provided as a tuple in the function body (*args).

Declaration

A tuple is declared by specifying commas after each of its elements, with the exception of the empty tuple, that uses ():

empty_tuple = ()
one_element_tuple = 1,  # the trailing comma is mandatory
two_element_tuple = 1,2,   # for two or more elements, the trailing comma is optional

For aesthetic reasons, and also to make the tuple more visible, the comma-driven declaration can be enclosed in optional parentheses:

empty_tuple = ()
one_element_tuple = (1,)  # the trailing comma is mandatory
two_element_tuple = (1,2,)  # for two or more elements, the trailing comma is optional

Access a Tuple

To access the elements of a tuple, use the same bracket notation as for a list. The index is 0-based:

t = ('a', 'b', 'c')
assert 'a' == t[0]

Conversion from other Data Structures

The tuple() converts lists, or iterables, in general, to tuples:

l = ['a', 'b', 'c']
t = tuple(l)
print(t)
assert 'a' == t[0]
assert 'b' == t[1]
assert 'c' == t[2]

Tuple Unpacking

Assigning multiple variable at once is called "tuple unpacking":

t = (1, 'B', 3.0)
a, b, c = t
print(a)  # will print 1
print(b)  # will print 'B'
print(c)  # will print 3.0

Exchanging Variable Values

Tuples can be used to exchange to variable values without using a third temporary variable.

v1 = 'A'
v2 = 'B'
v1, v2 = v2, v1
print(v1)  # will print B
print(v2)  # will print A

Named Tuples

Named tuples can be a simple alternative to objects.