Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Concatenating Tuples | Tuple
Python Data Structures
course content

Course Content

Python Data Structures

Python Data Structures

1. List
2. Dictionary
3. Tuple
4. Set

book
Concatenating Tuples

In Python, it's possible to combine tuples. This involves forming a new tuple by merging two or more existing ones. You can accomplish this with the + operator. Here's an example to illustrate.

1234567
movie_titles = ("Inception", "Interstellar", "Dunkirk") release_years = (2010, 2014, 2017) # Concatenate the tuples combined_tuple = movie_titles + release_years print(combined_tuple)
copy
Task
test

Swipe to show code editor

Create another tuple named availability containing the values 3 (number of available copies) and "Shelf B2" (storage location). Then, concatenate the availability tuple with the movie_details tuple, and print the resulting combined tuple.

Switch to desktopSwitch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?

How can we improve it?

Thanks for your feedback!

Section 3. Chapter 3
toggle bottom row

book
Concatenating Tuples

In Python, it's possible to combine tuples. This involves forming a new tuple by merging two or more existing ones. You can accomplish this with the + operator. Here's an example to illustrate.

1234567
movie_titles = ("Inception", "Interstellar", "Dunkirk") release_years = (2010, 2014, 2017) # Concatenate the tuples combined_tuple = movie_titles + release_years print(combined_tuple)
copy
Task
test

Swipe to show code editor

Create another tuple named availability containing the values 3 (number of available copies) and "Shelf B2" (storage location). Then, concatenate the availability tuple with the movie_details tuple, and print the resulting combined tuple.

Switch to desktopSwitch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?

How can we improve it?

Thanks for your feedback!

Section 3. Chapter 3
Switch to desktopSwitch to desktop for real-world practiceContinue from where you are using one of the options below
We're sorry to hear that something went wrong. What happened?
some-alt