Title: Unpacking A Tuple
Slug: unpacking_a_tuple
Summary: Unpacking A Tuple in Python.
Date: 2016-01-23 12:00
Category: Python
Tags: Basics
Authors: Chris Albon
Interesting in learning more? Check out Fluent Python
In [1]:
# Create a list of tuples where the first and second element of each
# super is the first last names, respectively
soldiers = [('Steve', 'Miller'), ('Stacy', 'Markov'), ('Sonya', 'Matthews'), ('Sally', 'Mako')]
In [2]:
# For the second element for each tuple in soldiers,
for _, last_name in soldiers:
# print the second element
print(last_name)