Tutorials
Courses
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.4K+ articles
Python
21.3K+ articles
Python Programs
4.0K+ articles
Python list-programs
1.7K+ articles
python
1.2K+ articles
Python dictionary-programs
582+ articles
python-list
426+ articles
python-tuple
72+ articles
Python matrix-program
64+ articles
Python List-of-Tuples
31+ articles
Python tuple-programs
212+ posts
Recent Articles
Popular Articles
Python Tuple Exercise
Last Updated: 12 October 2021
Basic Tuple ProgramsPython program to Find the size of a TuplePython – Maximum and Minimum K elements in TupleCreate a list of tuples from given list having number and its...
read more
Python
Python tuple-programs
Python - Restrict Tuples by frequency of first element's value
Last Updated: 08 March 2023
Given a Tuple list, the task is to write a Python program to restrict the frequency of the 1st element of tuple values to at most K.Examples:Input : test_list = [(2, 3), (...
read more
Python
Python Programs
Python list-programs
Python tuple-programs
Python program to sort tuples by frequency of their absolute difference
Last Updated: 15 May 2023
Given a list of dual tuples, the task here is to write a Python program that can sort them by the frequency of their elements' absolute differences.Input : [(1, 6), (11, 3...
read more
Python
Python Programs
Python list-programs
Python tuple-programs
Python Program to Remove duplicate tuples irrespective of order
Last Updated: 22 April 2023
Given a list of binary tuples, the task is to write a Python program to remove all tuples that are duplicates irrespective of order, i.e delete if contains similar element...
read more
Python
Python Programs
Python tuple-programs
Python - Change the signs of elements of tuples in a list
Last Updated: 20 April 2023
Given a dual Tuple list, the task is to write a python program to convert second element to negative magnitude of each tuple and first element to positive magnitude of eac...
read more
Python
Python Programs
Python list-programs
Python tuple-programs
Python Program to find tuple indices from other tuple list
Last Updated: 30 March 2023
Given Tuples list and search list consisting of tuples to search, our task is to write a Python Program to extract indices of matching tuples.Input : test_list = [(4, 5), ...
read more
Python
Python Programs
Python tuple-programs
Python - Concatenate Maximum Tuples
Last Updated: 15 April 2023
Given a tuple list with string and its magnitude, the task is to write a python program to join all the strings with maximum magnitudes.Examples:Input : test_list = [("Gfg...
read more
Python
Python Programs
Python tuple-programs
Find Largest Item in a Tuple - Python
Last Updated: 14 February 2025
We need to find the largest number or the top N largest numbers from a tuple.For Example:Input: (10,20,23,5,2,90) #tupleOutput: 90Explanation: 90 is the largest element fr...
read more
Python
Python Programs
Python tuple-programs
Getting an Element from Tuple of Tuples in Python
Last Updated: 13 February 2024
Tuples in Python are versatile data structures that allow you to store and organize collections of elements. When dealing with tuples of tuples, accessing specific element...
read more
Python
Python Programs
Picked
Python tuple-programs
How to Check if Tuple is empty in Python ?
Last Updated: 19 November 2024
A Tuple is an immutable sequence, often used for grouping data. You need to check if a tuple is empty before performing operations. Checking if a tuple is empty is straig...
read more
Python
Python Programs
python-tuple
Python tuple-programs
python
Python Access Tuple Item
Last Updated: 06 December 2024
In Python, a tuple is a collection of ordered, immutable elements. Accessing the items in a tuple is easy and in this article, we'll explore how to access tuple elements i...
read more
Python
Python Programs
python-tuple
Python tuple-programs
Python Update Tuples
Last Updated: 06 December 2024
Tuples in Python are often introduced as immutable objects, meaning once a tuple is created, its contents cannot be modified or updated directly. However, there are techni...
read more
Python
Python Programs
python-tuple
Python tuple-programs
Python List Creation Programs
Last Updated: 06 February 2025
Python provides multiple ways to create lists based on different requirements, such as generating lists of numbers, creating nested lists, forming lists of tuples or dicti...
read more
Python
Python Programs
python-list
python-tuple
Python list-programs
Python tuple-programs
Python List Add/Append Programs
Last Updated: 06 February 2025
This article covers a wide range of methods for adding elements to a list, including:Basic addition techniques like append(), extend(), and insert().Appending multiple ite...
read more
Python
Python Programs
python-list
python-tuple
Python list-programs
Python tuple-programs
Dictionary Programs involving Lists - Python
Last Updated: 12 February 2025
Dictionaries and lists are two of the most commonly used data structures in Python, and often, we need to work with both together. Whether it's storing lists as dictionary...
read more
Python
Python Programs
python-dict
python-tuple
Python dictionary-programs
Python tuple-programs
1
2
3
4
...
15
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 !