Skip to content
geeksforgeeks
  • Courses
    • DSA to Development
    • Get IBM Certification
    • Newly Launched!
      • Master Django Framework
      • Become AWS Certified
    • For Working Professionals
      • Interview 101: DSA & System Design
      • Data Science Training Program
      • JAVA Backend Development (Live)
      • DevOps Engineering (LIVE)
      • Data Structures & Algorithms in Python
    • For Students
      • Placement Preparation Course
      • Data Science (Live)
      • Data Structure & Algorithm-Self Paced (C++/JAVA)
      • Master Competitive Programming (Live)
      • Full Stack Development with React & Node JS (Live)
    • Full Stack Development
    • Data Science Program
    • All Courses
  • Tutorials
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
  • Practice
    • Build your AI Agent
    • GfG 160
    • Problem of the Day
    • Practice Coding Problems
    • GfG SDE Sheet
  • Contests
    • Accenture Hackathon (Ending Soon!)
    • GfG Weekly [Rated Contest]
    • Job-A-Thon Hiring Challenge
    • All Contests and Events
  • Python Tutorial
  • Interview Questions
  • Python Quiz
  • Python Glossary
  • Python Projects
  • Practice Python
  • Data Science With Python
  • Python Web Dev
  • DSA with Python
  • Python OOPs
Open In App
Next Article:
Tuple Operations in Python
Next article icon

Python Tuple Exercise

Last Updated : 12 Oct, 2021
Comments
Improve
Suggest changes
Like Article
Like
Report

Basic Tuple Programs

  • Python program to Find the size of a Tuple
  • Python – Maximum and Minimum K elements in Tuple
  • Create a list of tuples from given list having number and its cube in each tuple
  • Python – Adding Tuple to List and vice – versa
  • Python – Sum of tuple elements
  • Python – Modulo of tuple elements
  • Python – Row-wise element Addition in Tuple Matrix
  • Python – Update each element in tuple list
  • Python – Multiply Adjacent elements
  • Python – Join Tuples if similar initial element
  • Python – All pair combinations of 2 tuples
  • Python – Remove Tuples of Length K
  • Python – Remove Tuples from the List having every element as None
  • Sort a list of tuples by second Item
  • Python – Sort Tuples by Total digits
  • Python – Elements frequency in Tuple
  • Python – Filter Range Length Tuples
  • Python – Assign Frequency to Tuples
  • Python – Records with Value at K index
  • Python – Test if tuple is distinct

List of Tuples Programs

  • Python program to find tuples which have all elements divisible by K from a list of tuples
  • Python program to find Tuples with positive elements in List of tuples
  • Python – Count tuples occurrence in list of tuples
  • Python – Removing duplicates from tuple
  • Python – Remove duplicate lists in tuples (Preserving Order)
  • Python – Extract digits from Tuple list
  • Python – Cross Pairing in Tuple List
  • Python – Consecutive Kth column Difference in Tuple List
  • Python – Kth Column Product in Tuple List
  • Python – Flatten tuple of List to tuple
  • Python – Flatten Tuples List to String
  • Python program to sort a list of tuples alphabetically
  • Python – Combinations of sum with tuples in tuple list
  • Python – Custom sorting in list of tuples

Conversion of Tuple Programs

  • Python program to convert tuple into list by adding the given string after every element
  • Python – Convert Tuple Matrix to Tuple List
  • Python – Convert Tuple to Tuple Pair
  • Python – Convert List of Lists to Tuple of Tuples
  • Python – Convert Matrix to Custom Tuple Matrix
  • Python – Convert Nested Tuple to Custom Key Dictionary
  • Python program to convert tuple to float value

Advance Tuple Programs

  • Python – Extract tuples having K digit elements
  • Python – Extract Symmetric Tuples
  • Python program to Sort Tuples by their Maximum element
  • Python – Remove nested records from tuple
  • Python – Elements Frequency in Mixed Nested Tuple
  • Python Program to get unique elements in nested tuple
  • Python program to Concatenate tuples to nested tuples
  • Python – Sort by Frequency of second element in Tuple List
  • Python – Sort lists in tuple
  • Python program to Order Tuples using external List
  • Python – Filter Tuples by Kth element from List
  • Python – Closest Pair to Kth index element in Tuple
  • Python – Tuple List intersection (Order irrespective)
  • Python – Intersection in Tuple Records Data
  • Python – Unique Tuple Frequency (Order Irrespective)
  • Python – Skew Nested Tuple Summation
  • Python – Convert Binary tuple to Integer
  • Python – Tuple XOR operation
  • Python – AND operation between Tuples
  • Python – Elementwise AND in tuples


Next Article
Tuple Operations in Python
author
abhishek1
Improve
Article Tags :
  • Python
  • Python tuple-programs
Practice Tags :
  • python

Similar Reads

  • Python Tuples
    A tuple in Python is an immutable ordered collection of elements. Tuples are similar to lists, but unlike lists, they cannot be changed after their creation (i.e., they are immutable). Tuples can hold elements of different data types. The main characteristics of tuples are being ordered , heterogene
    7 min read
  • Tuple Operations in Python
    Python Tuple is a collection of objects separated by commas. A tuple is similar to a Python list in terms of indexing, nested objects, and repetition but the main difference between both is Python tuple is immutable, unlike the Python list which is mutable. [GFGTABS] Python # Note : In case of list,
    7 min read
  • Create a List of Tuples in Python
    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, making them useful when storing fixed pairs or groups of values, while lists offer flexibility for dynamic collections. For example
    3 min read
  • Create a tuple from string and list - Python
    The task of creating a tuple from a string and a list in Python involves combining elements from both data types into a single tuple. The list elements are added as individual items and the string is treated as a single element within the tuple. For example, given a = ["gfg", "is"] and b = "best", t
    3 min read
  • Access front and rear element of Python tuple
    Sometimes, while working with records, we can have a problem in which we need to access the initial and last data of a particular record. This kind of problem can have application in many domains. Let's discuss some ways in which this problem can be solved. Method #1: Using Access Brackets We can pe
    6 min read
  • Python - Element Index in Range Tuples
    Sometimes, while working with Python data, we can have a problem in which we need to find the element position in continuous equi ranged tuples in list. This problem has applications in many domains including day-day programming and competitive programming. Let's discuss certain ways in which this t
    6 min read
  • Unpacking a Tuple in Python
    Tuple unpacking is a powerful feature in Python that allows you to assign the values of a tuple to multiple variables in a single line. This technique makes your code more readable and efficient. In other words, It is a process where we extract values from a tuple and assign them to variables in a s
    2 min read
  • Unpacking Nested Tuples-Python
    The task of unpacking nested tuples in Python involves iterating through a list of tuples, extracting values from both the outer and inner tuples and restructuring them into a flattened format. For example, a = [(4, (5, 'Gfg')), (7, (8, 6))] becomes [(4, 5, 'Gfg'), (7, 8, 6)]. Using list comprehensi
    3 min read
  • Python | Slice String from Tuple ranges
    Sometimes, while working with data, we can have a problem in which we need to perform the removal from strings depending on specified substring ranges. Let's discuss certain ways in which this task can be performed. Method #1: Using loop + list slicing: This is the brute force task to perform this t
    3 min read
  • Python - Clearing a tuple
    Sometimes, while working with Records data, we can have a problem in which we may require to perform clearing of data records. Tuples, being immutable cannot be modified and hence makes this job tough. Let's discuss certain ways in which this task can be performed. Method #1 : Using list() + clear()
    4 min read
geeksforgeeks-footer-logo
Corporate & Communications Address:
A-143, 7th Floor, Sovereign Corporate Tower, Sector- 136, Noida, Uttar Pradesh (201305)
Registered Address:
K 061, Tower K, Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh, 201305
GFG App on Play Store GFG App on App Store
Advertise with us
  • Company
  • About Us
  • Legal
  • Privacy Policy
  • In Media
  • Contact Us
  • Advertise with us
  • GFG Corporate Solution
  • Placement Training Program
  • Languages
  • Python
  • Java
  • C++
  • PHP
  • GoLang
  • SQL
  • R Language
  • Android Tutorial
  • Tutorials Archive
  • DSA
  • Data Structures
  • Algorithms
  • DSA for Beginners
  • Basic DSA Problems
  • DSA Roadmap
  • Top 100 DSA Interview Problems
  • DSA Roadmap by Sandeep Jain
  • All Cheat Sheets
  • Data Science & ML
  • Data Science With Python
  • Data Science For Beginner
  • Machine Learning
  • ML Maths
  • Data Visualisation
  • Pandas
  • NumPy
  • NLP
  • Deep Learning
  • Web Technologies
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • ReactJS
  • NextJS
  • Bootstrap
  • Web Design
  • Python Tutorial
  • Python Programming Examples
  • Python Projects
  • Python Tkinter
  • Python Web Scraping
  • OpenCV Tutorial
  • Python Interview Question
  • Django
  • Computer Science
  • Operating Systems
  • Computer Network
  • Database Management System
  • Software Engineering
  • Digital Logic Design
  • Engineering Maths
  • Software Development
  • Software Testing
  • DevOps
  • Git
  • Linux
  • AWS
  • Docker
  • Kubernetes
  • Azure
  • GCP
  • DevOps Roadmap
  • System Design
  • High Level Design
  • Low Level Design
  • UML Diagrams
  • Interview Guide
  • Design Patterns
  • OOAD
  • System Design Bootcamp
  • Interview Questions
  • Inteview Preparation
  • Competitive Programming
  • Top DS or Algo for CP
  • Company-Wise Recruitment Process
  • Company-Wise Preparation
  • Aptitude Preparation
  • Puzzles
  • School Subjects
  • Mathematics
  • Physics
  • Chemistry
  • Biology
  • Social Science
  • English Grammar
  • Commerce
  • World GK
  • GeeksforGeeks Videos
  • DSA
  • Python
  • Java
  • C++
  • Web Development
  • Data Science
  • CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
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
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences