In Python, a tuple is an immutable collection of items in sequence.
Like most collections, tuples
can hold any (or multiple) data type(s) -- including other tuples
.
Tuples support all common sequence operations, but do not support mutable sequence operations.
The elements of a tuple can be iterated over using the for item in <tuple>
construct.
If both element index and value are needed, for index, item in enumerate(<tuple>)
can be used.
Like any sequence, elements within tuples
can be accessed via bracket notation using a 0-based index
number from the left or a -1-based index
number from the right.
Tuples can also be copied in whole or in part using slice notation (<tuple>[<start>:<stop>:<step>]
).
Tuples can be formed in multiple ways, using either the tuple(<iterable>)
class constructor or the tuple
literal declaration.
tuple()
constructor empty or with an iterable:>>> no_elements = tuple()
()
# The constructor *requires* an iterable, so single elements must be passed in a list or another tuple.
>>> one_element = tuple([16])
(16,)
Strings are iterable, so using a single str
as an argument to the tuple()
constructor can have surprising results:
# String elements (characters) are iterated through and added to the tuple
>>> multiple_elements_string = tuple("Timbuktu")
('T', 'i', 'm', 'b', 'u', 'k', 't', 'u')
Single iterables have their elements added one by one:
>>> multiple_elements_list = tuple(["Parrot", "Bird", 334782])
("Parrot", "Bird", 334782)
>>> multiple_elements_set = tuple({2, 3, 5, 7, 11})
(2,3,5,7,11)
Because the tuple(<iterable>)
constructor only takes iterables (or nothing) as arguments, it is much easier to create
a one-tuple via the literal method.
>>> no_elements = ()
()
>>> one_element = ("Guava",)
("Guava",)
Nested data structures can be included as tuple
elements, including other tuples
:
>>> nested_data_structures = ({"fish": "gold", "monkey": "brown", "parrot" : "grey"}, ("fish", "mammal", "bird"))
({"fish": "gold", "monkey": "brown", "parrot" : "grey"}, ("fish", "mammal", "bird"))
>>> nested_data_structures_1 = (["fish", "gold", "monkey", "brown", "parrot", "grey"], ("fish", "mammal", "bird"))
(["fish", "gold", "monkey", "brown", "parrot", "grey"], ("fish", "mammal", "bird"))
Tuples can be concatenated using plus +
operator, which unpacks each tuple
creating a new, combined tuple
.
>>> new_via_concatenate = ("George", 5) + ("cat", "Tabby")
("George", 5, "cat", "Tabby")
#likewise, using the multiplication operator * is the equivalent of using + n times
>>> first_group = ("cat", "dog", "elephant")
>>> multiplied_group = first_group * 3
('cat', 'dog', 'elephant', 'cat', 'dog', 'elephant', 'cat', 'dog', 'elephant')
Elements within a tuple
can be accessed via bracket notation using a 0-based index
number from the left or a -1-based index
number from the right.
student_info = ("Alyssa", "grade 3", "female", 8 )
#gender is at index 2 or index -2
>>> student_gender = student_info[2]
'female'
>>> student_gender = student_info[-2]
'female'
#name is at index 0 or index -4
>>> student_name = student_info[0]
Alyssa
>>> student_name = student_info[-4]
Alyssa
Elements inside a tuple
can be iterated over in a loop using for item in <tuple>
syntax.
If both indexes and values are needed, for index, item in enumerate(<tuple>)
can be used.
>>> student_info = ("Alyssa", "grade 3", "female", 8 )
>>> for item in student_info:
... print(item)
...
Alyssa
grade 3
female
8
>>> for index, item in enumerate(student_info):
... print("Index is: " + str(index) + ", value is: " + str(item) +".")
...
Index is: 0, value is: Alyssa.
Index is: 1, value is: grade 3.
Index is: 2, value is: female.
Index is: 3, value is: 8.
The in
operator can be used to check membership in a tuple
.
>>> multiple_elements_list = tuple(["Parrot", "Bird", 334782])
("Parrot", "Bird", 334782)
>>> "Parrot" in multiple_elements_list
True
Azara and Rui are teammates competing in a pirate-themed treasure hunt. One has a list of treasures with map coordinates, the other a list of location names with map coordinates. They've also been given blank maps with a starting place marked YOU ARE HERE.
Azara's List | Rui's List | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
But things are a bit disorganized: Azara's coordinates appear to be formatted and sorted differently from Rui's, and they have to keep looking from one list to the other to figure out which treasures go with which locations. Being budding pythonistas, they have come to you for help in writing a small program (a set of functions, really) to better organize their hunt information.
Implement the get_coordinate()
function that takes a (treasure, coordinate)
pair from Azara's list and returns only the extracted map coordinate.
>>> get_coordinate(('Scrimshawed Whale Tooth', '2A'))
2A
Implement the convert_coordinate()
function that takes a coordinate in the format "2A" and returns a tuple in the format ("2", "A")
.
>>> convert_coordinate("2A")
("2", "A")
Implement the compare_records()
function that takes a (treasure, coordinate)
pair and a (location, coordinate, quadrant)
record and compares coordinates from each.
Return True
if the coordinates "match", and return False
if they do not.
Re-format coordinates as needed for accurate comparison.
>>> compare_records(('Brass Spyglass', '4B'), ('Seaside Cottages', ('1', 'C'), 'blue'))
False
>>> compare_records(('Model Ship in Large Bottle', '8A'), ('Harbor Managers Office', ('8', 'A'), 'purple'))
True
Implement the create_record()
function that takes a (treasure, coordinate)
pair from Azara's list and a (location, coordinate, quadrant)
record from Rui's list and returns (treasure, coordinate, location, coordinate, quadrant)
if the coordinates match.
If the coordinates do not match, return the string "not a match".
Re-format the coordinate as needed for accurate comparison.
>>> create_record(('Brass Spyglass', '4B'), ('Abandoned Lighthouse', ('4', 'B'), 'Blue'))
('Brass Spyglass', '4B', 'Abandoned Lighthouse', ('4', 'B'), 'Blue')
>>> create_record(('Brass Spyglass', '4B'), ('Seaside Cottages', ('1', 'C'), 'blue'))
"not a match"
Clean up the combined records from Azara and Rui so that there's only one set of coordinates per record. Make a report so they can see one list of everything they need to put on their maps.
Implement the clean_up()
function that takes a tuple of tuples (everything from both lists), looping through the outer tuple, dropping the unwanted coordinates from each inner tuple and adding each to a 'report'.
Format and return the 'report' so that there is one cleaned record on each line.
>>> clean_up((('Brass Spyglass', '4B', 'Abandoned Lighthouse', ('4', 'B'), 'Blue'), ('Vintage Pirate Hat', '7E', 'Quiet Inlet (Island of Mystery)', ('7', 'E'), 'Orange'), ('Crystal Crab', '6A', 'Old Schooner', ('6', 'A'), 'Purple')))
"""
('Brass Spyglass', 'Abandoned Lighthouse', ('4', 'B'), 'Blue')\n
('Vintage Pirate Hat', 'Quiet Inlet (Island of Mystery)', ('7', 'E'), 'Orange')\n
('Crystal Crab', 'Old Schooner', ('6', 'A'), 'Purple')\n
"""
Sign up to Exercism to learn and master Python with 17 concepts, 140 exercises, and real human mentoring, all for free.