Courses
Tutorials
Practice
Data Structure
Java
Python
HTML
Interview Preparation
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
SQL
Web Development
System Design
Aptitude
GfG Premium
Similar Topics
Web Technologies
37.1K+ articles
Python
20.5K+ articles
Python Programs
4.0K+ articles
Python list-programs
1.7K+ articles
Python dictionary-programs
582+ articles
python-list
426+ articles
python-dict
256+ articles
Python tuple-programs
212+ articles
python-tuple
72+ articles
Python matrix-program
64+ articles
Python List-of-Tuples
31 posts
Recent Articles
Popular Articles
Slicing List of Tuples in Python
Last Updated: 13 February 2024
Slicing, a powerful feature in Python, allows us to extract specific portions of data from sequences like lists. When it comes to lists of tuples, slicing becomes a handy ...
read more
Python
Python Programs
Picked
Python List-of-Tuples
How To Slice A List Of Tuples In Python?
Last Updated: 30 January 2024
In Python, slicing a list of tuples allows you to extract specific subsets of data efficiently. Tuples, being immutable, offer a stable structure. Use slicing notation to ...
read more
Python
Python Programs
python-tuple
Picked
Python List-of-Tuples
Convert Tuple to List in Python
Last Updated: 03 May 2025
In Python, tuples and lists are commonly used data structures, but they have different properties:Tuples are immutable: their elements cannot be changed after creation.Lis...
read more
Python
python-tuple
Python list-programs
Python List-of-Tuples
Python Memory Consumption: Dictionary VS List of Tuples
Last Updated: 09 December 2021
In this article, we are going to see memory consumption in dictionaries and a list of tuples.Memory Consumption by dict vs list of tuplesDictionary occupies much more spac...
read more
Python
python-dict
Picked
Python List-of-Tuples
Python - Create list of tuples using for loop
Last Updated: 18 April 2023
In this article, we will discuss how to create a List of Tuples using for loop in Python.Let's suppose we have a list and we want a create a list of tuples from that list ...
read more
Python
Python Programs
Picked
Python List-of-Tuples
Blogathon
Blogathon-2021
How to iterate through list of tuples in Python
Last Updated: 17 December 2024
In Python, a list of tuples is a common data structure used to store paired or grouped data. Iterating through this type of list involves accessing each tuple one by one a...
read more
Python
python-list
Picked
Python List-of-Tuples
Get first element from a List of tuples - Python
Last Updated: 22 April 2025
The goal here is to extract the first element from each tuple in a list of tuples. For example, given a list [(1, 'sravan'), (2, 'ojaswi'), (3, 'bobby')], we want to retri...
read more
Python
Python Programs
Picked
Python List-of-Tuples
Python - List of tuples to multiple lists
Last Updated: 15 January 2025
Converting a list of tuples into multiple lists involves separating the tuple elements into individual lists. This can be achieved using methods like zip(), list comprehen...
read more
Python
Python Programs
python-list
Picked
Python List-of-Tuples
Create a List of Tuples in Python
Last Updated: 14 February 2025
The task of creating a list of tuples in Python involves combining or transforming multiple data elements into a sequence of tuples within a list. Tuples are immutable, ma...
read more
Python
python-list
python-tuple
Picked
Python List-of-Tuples
Python program to Flatten Nested List to Tuple List
Last Updated: 07 April 2023
Given a list of tuples with each tuple wrapped around multiple lists, our task is to write a Python program to flatten the container to a list of tuples.Input : test_list ...
read more
Python
Python Programs
Python list-programs
Python List-of-Tuples
Python program to convert a list of strings with a delimiter to a list of tuple
Last Updated: 08 May 2023
Given a List containing strings with a particular delimiter. The task is to remove the delimiter and convert the string to the list of tuple.Examples:Input : test_list = [...
read more
Python
Python Programs
Python list-programs
Python List-of-Tuples
Python program to find tuples which have all elements divisible by K from a list of tuples
Last Updated: 21 March 2023
Given a list of tuples. The task is to extract all tuples which have all elements divisible by K.Input : test_list = [(6, 24, 12), (60, 12, 6), (12, 18, 21)], K = 6Output ...
read more
Python
Python Programs
Python tuple-programs
Python List-of-Tuples
Python - Assign pair elements from Tuple Lists
Last Updated: 04 April 2023
Given a tuple list, assign each element, its pair elements from other similar pairs.Input : test_list = [(5, 3), (7, 5), (8, 4)] Output : {5: [3], 7: [5], 8: [4], 4: []} ...
read more
Python
Python Programs
Python dictionary-programs
Python tuple-programs
Python List-of-Tuples
Python - Extract Missing Ranges
Last Updated: 28 July 2020
Given list of tuples, start range and end range values, extract the ranges that are missing from the list.Input : test_list = [(7, 2), (15, 19), (38, 50)], strt_val = 5, s...
read more
Python
Python Programs
Python tuple-programs
Python List-of-Tuples
Python - Remove Duplicate subset Tuples
Last Updated: 13 March 2023
Sometimes, while working with Python tuples, we can have a problem in which we need to perform the removal of tuples, which are already present as subsets in other tuples....
read more
Python
Python Programs
Python list-programs
Python List-of-Tuples
1
2
3
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our
Cookie Policy
&
Privacy Policy
Got It !