Python Data Types: Tuple - Exercises, Practice, Solution
This resource offers a total of 165 Python Tuple problems for practice. It includes 33 main exercises, each accompanied by solutions, detailed explanations, and four related problems.
[An Editor is available at the bottom of the page to write and execute the scripts.]
A tuple is a container which holds a series of comma-separated values (items or elements) between parentheses such as an (x, y) co-ordinate. Tuples are like lists, except they are immutable (i.e. you cannot change its content once created) and can hold mix data types.
You may read our Python tuple tutorial before solving the following exercises.
1. Create a Tuple
Write a Python program to create a tuple.
Click me to see the sample solution
2. Create a Tuple with Different Data Types
Write a Python program to create a tuple with different data types.
Click me to see the sample solution
3. Create a Tuple of Numbers and Print One Item
Write a Python program to create a tuple of numbers and print one item.
Click me to see the sample solution
4. Unpack a Tuple into Several Variables
Write a Python program to unpack a tuple into several variables.
Click me to see the sample solution
5. Add an Item to a Tuple
Write a Python program to add an item to a tuple.
Click me to see the sample solution
6. Convert a Tuple to a String
Write a Python program to convert a tuple to a string.
Click me to see the sample solution
7. Get the 4th Element from the Last Element of a Tuple
Write a Python program to get the 4th element from the last element of a tuple.
Click me to see the sample solution
8. Create the Colon of a Tuple
Write a Python program to create the colon of a tuple.
Click me to see the sample solution
9. Find Repeated Items in a Tuple
Write a Python program to find repeated items in a tuple.
Click me to see the sample solution
10. Check Whether an Element Exists Within a Tuple
Write a Python program to check whether an element exists within a tuple.
Click me to see the sample solution
11. Convert a List to a Tuple
Write a Python program to convert a list to a tuple.
Click me to see the sample solution
12. Remove an Item from a Tuple
Write a Python program to remove an item from a tuple.
Click me to see the sample solution
13. Slice a Tuple
Write a Python program to slice a tuple.
Click me to see the sample solution
14. Find the Index of an Item in a Tuple
Write a Python program to find the index of an item in a tuple.
Click me to see the sample solution
15. Find the Length of a Tuple
Write a Python program to find the length of a tuple.
Click me to see the sample solution
16. Convert a Tuple to a Dictionary
Write a Python program to convert a tuple to a dictionary.
Click me to see the sample solution
17. Unzip a List of Tuples into Individual Lists
Write a Python program to unzip a list of tuples into individual lists.
Click me to see the sample solution
18. Reverse a Tuple
Write a Python program to reverse a tuple.
Click me to see the sample solution
19. Convert a List of Tuples into a Dictionary
Write a Python program to convert a list of tuples into a dictionary.
Click me to see the sample solution
20. Print Tuple with String Formatting
Write a Python program to print a tuple with string formatting.
Sample tuple : (100, 200, 300)
Output : This is a tuple (100, 200, 300)
Click me to see the sample solution
21. Replace the Last Value of Tuples in a List
Write a Python program to replace the last value of tuples in a list.
Sample list: [(10, 20, 40), (40, 50, 60), (70, 80, 90)]
Expected Output: [(10, 20, 100), (40, 50, 100), (70, 80, 100)]
Click me to see the sample solution
22. Remove Empty Tuple(s) from a List of Tuples
Write a Python program to remove an empty tuple(s) from a list of tuples.
Sample data: [(), (), ('',), ('a', 'b'), ('a', 'b', 'c'), ('d')]
Expected output: [('',), ('a', 'b'), ('a', 'b', 'c'), 'd']
Click me to see the sample solution
23. Sort a Tuple by Its Float Element
Write a Python program to sort a tuple by its float element.
Sample data: [('item1', '12.20'), ('item2', '15.10'), ('item3', '24.5')]
Expected Output: [('item3', '24.5'), ('item2', '15.10'), ('item1', '12.20')]
Click me to see the sample solution
24. Count Elements in a List Until an Element is a Tuple
Write a Python program to count the elements in a list until an element is a tuple.
Click me to see the sample solution
25. Convert a Given String List to a Tuple
Write a Python program to convert a given string list to a tuple.
Original string:
python 3.0
<class 'str'>
Convert the said string to a tuple:
('p', 'y', 't', 'h', 'o', 'n', '3', '.', '0')
<class 'tuple'>
Click me to see the sample solution
26. Calculate the Product of Numbers in a Tuple
Write a Python program to calculate the product, multiplying all the numbers in a given tuple.
Original Tuple:
(4, 3, 2, 2, -1, 18)
Product - multiplying all the numbers of the said tuple: -864
Original Tuple:
(2, 4, 8, 8, 3, 2, 9)
Product - multiplying all the numbers of the said tuple: 27648
Click me to see the sample solution
27. Calculate Average Value of Numbers in a Tuple of Tuples
Write a Python program to calculate the average value of the numbers in a given tuple of tuples.
Original Tuple:
((10, 10, 10, 12), (30, 45, 56, 45), (81, 80, 39, 32), (1, 2, 3, 4))
Average value of the numbers of the said tuple of tuples:
[30.5, 34.25, 27.0, 23.25]
Original Tuple:
((1, 1, -5), (30, -15, 56), (81, -60, -39), (-10, 2, 3))
Average value of the numbers of the said tuple of tuples:
[25.5, -18.0, 3.75]
Click me to see the sample solution
28. Convert a Tuple of String Values to a Tuple of Integer Values
Write a Python program to convert a tuple of string values to a tuple of integer values.
Original tuple values:
(('333', '33'), ('1416', '55'))
New tuple values:
((333, 33), (1416, 55))
Click me to see the sample solution
29. Convert a Tuple of Positive Integers into an Integer
Write a Python program to convert a given tuple of positive integers into an integer.
Original tuple:
(1, 2, 3)
Convert the said tuple of positive integers into an integer:
123
Original tuple:
(10, 20, 40, 5, 70)
Convert the said tuple of positive integers into an integer:
102040570
Click me to see the sample solution
30. Check if a Specified Element Appears in a Tuple of Tuples
Write a Python program to check if a specified element appears in a tuple of tuples.
Original list:
(('Red', 'White', 'Blue'), ('Green', 'Pink', 'Purple'), ('Orange', 'Yellow', 'Lime'))
Check if White presenet in said tuple of tuples!
True
Check if White presenet in said tuple of tuples!
True
Check if Olive presenet in said tuple of tuples!
False
Click me to see the sample solution
31. Compute Element-wise Sum of Given Tuples
Write a Python program to compute the element-wise sum of given tuples.
Original lists:
(1, 2, 3, 4)
(3, 5, 2, 1)
(2, 2, 3, 1)
Element-wise sum of the said tuples:
(6, 9, 8, 6)
Click me to see the sample solution
32. Compute Sum of All Elements of Each Tuple in a List of Tuples
Write a Python program to compute the sum of all the elements of each tuple stored inside a list of tuples.
Original list of tuples:
[(1, 2), (2, 3), (3, 4)]
Sum of all the elements of each tuple stored inside the said list of tuples:
[3, 5, 7]
Original list of tuples:
[(1, 2, 6), (2, 3, -6), (3, 4), (2, 2, 2, 2)]
Sum of all the elements of each tuple stored inside the said list of tuples:
[9, -1, 7, 8]
Click me to see the sample solution
33. Convert a List of Tuples to a List of Lists
Write a Python program to convert a given list of tuples to a list of lists.
Original list of tuples:
[(1, 2), (2, 3), (3, 4)]
Convert the said list of tuples to a list of lists:
[[1, 2], [2, 3], [3, 4]]
Original list of tuples:
[(1, 2), (2, 3, 5), (3, 4), (2, 3, 4, 2)]
Convert the said list of tuples to a list of lists:
[[1, 2], [2, 3, 5], [3, 4], [2, 3, 4, 2]]
Click me to see the sample solution
Python Code Editor:
More to Come !
Do not submit any solution of the above exercises at here, if you want to contribute go to the appropriate exercise page.
Test your Python skills with w3resource's quiz
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics