Python – Unpack Tuples

This post examines Python unpack tuples with examples in the hope that it will facilitate learning.

There are some situations in which Python Tuples differ from lists. It means that Python tuples cannot be modified in the whole program if they are immutable.



Using * Asterisk

In Python unpacking tuples, if the number of variables is fewer than the number of values, you can put an * to the variable name and the contents will be assigned to the variable as a list:

Put the remaining values in a list called “b”:

Example: 

country_tuple = ("United States of America", "United Kingdom", "Finland", "Australia") (a, *b) = country_tuple print(a) print(b)

Python assigns values to variables until the number of values left equals the number of variables if the asterisk is added to another variable name than the last.

Make a list of values for the “b” variable:

Example: 

country_tuple = ("United States of America", "United Kingdom", "Finland", "Australia", "France") (a, *b, c) = country_tuple print(a) print(b) print(c)

Unpacking Tuple

The values of a tuple are normally assigned when it is created. When it comes to Python unpack tuples, this is called “packing Tuples“:

A tuple is packed as follows:

Example: 

country_tuple = ("United States of America", "United Kingdom", "Finland", "Brazil", "Germany", "Spain", "Maldives", "Croatia", "Denmark", "Italy") print(country_tuple)

Nevertheless, Python allows us to extract values and put them back into variables. This is what we call “unpacking Tuples”:

A tuple is unpacked as follows:

Example: 

country_tuple = ("United States of America", "United Kingdom", "Finland", "Australia") (a, b, c, d) = country_tuple print(a) print(b) print(c) print(d)

Reminder: You must use an asterisk to collect the remaining values if the number of variables does not match the number of values in the tuple.


Python – Unpack Tuples Benefits

Unpacking tuples in Python provides several benefits:

  • Unpacking allows you to assign the values of a tuple to multiple variables in a single statement. This makes the code more concise and readable, especially when dealing with functions that return multiple values as tuples.
  • Unpacking tuples allows you to assign values to multiple variables simultaneously. This can be particularly useful when swapping values between variables without needing a temporary variable.
  • Unpacking tuples is often used in for loops to iterate over multiple values at once. Instead of accessing elements of the tuple using indexing, you can unpack the tuple directly into individual variables, making the code more compact and readable.
  • Tuples can be used to bundle multiple values together and then unpacked as function arguments. This enables passing multiple values to a function using a single tuple, providing a convenient and flexible way to handle function parameters.
  • Tuples can be used to represent nested data structures, such as lists of tuples. Unpacking allows you to access the elements of the nested tuples directly, simplifying the code and enhancing readability.
Join the discussion! Appreciate our efforts or offer suggestions for the betterment of this site by leaving your reaction below.
We value your feedback.
+1
0
+1
0
+1
0
+1
0
+1
0
+1
0
+1
0

Subscribe To Our Newsletter
Enter your email to receive a weekly round-up of our best posts. Learn more!
icon

Leave a Reply

Your email address will not be published. Required fields are marked *