Open In App

Python – Extract digits from Tuple list

Last Updated : 21 Apr, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

Sometimes, while working with Python lists, we can have a problem in which we need to perform extraction of all the digits from tuple list. This kind of problem can find its application in data domains and day-day programming. Let’s discuss certain ways in which this task can be performed.

Input : test_list = [(15, 3), (3, 9)] 
Output : [9, 5, 3, 1]

Input : test_list = [(15, 3)] 
Output : [5, 3, 1] 

Method #1: Using map() + chain.from_iterable() + set() + loop 
The combination of above functions can be used to solve this problem. In this, we perform the task of flattening list using chain.from_iterable(), and then the digits are extracted using brute method. set() is used to remove duplicate digits.

Python3




# Python3 code to demonstrate working of
# Extract digits from Tuple list
# Using map() + chain.from_iterable() + set() + loop
from itertools import chain
 
# initializing list
test_list = [(15, 3), (3, 9), (1, 10), (99, 2)]
 
# printing original list
print("The original list is : " + str(test_list))
 
# Extract digits from Tuple list
# Using map() + chain.from_iterable() + set() + loop
temp = map(lambda ele: str(ele), chain.from_iterable(test_list))
res = set()
for sub in temp:
    for ele in sub:
        res.add(ele)
 
# printing result
print("The extracted digits : " + str(res))


Output

The original list is : [(15, 3), (3, 9), (1, 10), (99, 2)]
The extracted digits : {'1', '0', '3', '2', '9', '5'}

Time Complexity: O(n*m), where n is the length of the input list and m is the maximum length of any tuple element in the list.
Auxiliary Space: O(k), where k is the number of unique digits in the input list. This is because the set data structure is used to store the extracted digits.

Method #2: Using regex expression 
This is yet another way in which this task can be performed. In this, an appropriate regex expression is used to extract the required unique digits.

Python3




# Python3 code to demonstrate working of
# Extract digits from Tuple list
# Using regex expression
import re
 
# initializing list
test_list = [(15, 3), (3, 9), (1, 10), (99, 2)]
 
# printing original list
print("The original list is : " + str(test_list))
 
# Extract digits from Tuple list
# Using regex expression
temp = re.sub(r'[\[\]\(\), ]', '', str(test_list))
res = [int(ele) for ele in set(temp)]
 
# printing result
print("The extracted digits : " + str(res))


Output

The original list is : [(15, 3), (3, 9), (1, 10), (99, 2)]
The extracted digits : [5, 9, 2, 0, 1, 3]

Time complexity: O(n), where n is the length of the input list. 
Auxiliary space: O(n), where n is the length of the input list.

Method #3: Using list(),str(),map(),set() methods .

Initially converted all elements of tuple to string and concatenated them.Later used set() method to remove the duplicates, converted string elements to integer elements and finally converted them to list datatype.

Python3




# Python3 code to demonstrate working of
# Extract digits from Tuple list
 
# initializing list
test_list = [(15, 3), (3, 9), (1, 10), (99, 2)]
 
# printing original list
print("The original list is : " + str(test_list))
x=""
# Extract digits from Tuple list
for i in test_list:
    for j in i:
        x+=str(j)
res=list(map(int,set(x)))
# printing result
print("The extracted digits : " + str(res))


Output

The original list is : [(15, 3), (3, 9), (1, 10), (99, 2)]
The extracted digits : [2, 3, 0, 1, 9, 5]

Method#4: Using list Comprehension

Python3




# Initializing list
test_list = [(15, 3), (3, 9), (1, 10), (99, 2)]
 
# Printing original list
print("The original list is : " + str(test_list))
 
# Extracting digits from Tuple list using list comprehensions
temp = ''.join([str(i) for sublist in test_list for i in sublist])
result = set(temp)
result = [int(i) for i in result]
# Printing result
print("The extracted digits : " + str(list(result)))
#This code is contributed by Vinay Pinjala.


Output

The original list is : [(15, 3), (3, 9), (1, 10), (99, 2)]
The extracted digits : ['0', '9', '1', '3', '5', '2']

Time complexity : O(n)
Auxiliary Space : O(n)

METHOD 5:Using reduce and set

APPROACH:

This program extracts digits from a tuple list using the reduce function from the functools module.

ALGORITHM:

1.Define the tuple list.
2.Use the reduce function to concatenate all the elements of the tuple into a single string.
3.Convert each string into a set to remove duplicates.
4.Merge all sets into a single set.
5.Convert the set of strings into a set of individual digits.
6.Print the original list and the extracted digits.

Python3




from functools import reduce
 
tup_list = [(15, 3), (3, 9), (1, 10), (99, 2)]
 
digit_list = set(reduce(lambda a,b: str(a) + str(b), tup) for tup in tup_list)
digit_list = set(digit for string in digit_list for digit in string)
 
print("The original list is:", tup_list)
print("The extracted digits:", digit_list)


Output

The original list is: [(15, 3), (3, 9), (1, 10), (99, 2)]
The extracted digits: {'9', '3', '1', '5', '2', '0'}

Time Complexity: O(nlogn) (where n is the number of tuples in the list)
Space Complexity: O(n) (where n is the number of digits extracted)

METHOD 6: Using heapq:

Algorithm:

  1. Initialize a list ‘test_list’ with tuples of integers.
  2. Print the original list ‘test_list’.
  3. Using a list comprehension, extract all the digits from the tuples and join them as a single string.
  4. Convert the string to a set to extract only unique digits.
  5. Convert the set back to a list and sort the list.
  6. Print the resulting list of unique digits.

Python3




import heapq
 
# Initializing list
test_list = [(15, 3), (3, 9), (1, 10), (99, 2)]
 
# Printing original list
print("The original list is : " + str(test_list))
 
# Extracting digits from Tuple list using heapq
result = []
for tpl in test_list:
    result.extend(list(tpl))
 
# Converting the result list to heap
heapq.heapify(result)
 
# Extracting unique digits from heap
unique_digits = set()
while result:
    digits = str(heapq.heappop(result))
    for digit in digits:
        unique_digits.add(int(digit))
 
# Printing result
print("The extracted digits : " + str(list(unique_digits)))
#This code is contributed by Rayudu.


Output

The original list is : [(15, 3), (3, 9), (1, 10), (99, 2)]
The extracted digits : [0, 1, 2, 3, 5, 9]

Time Complexity:

Initializing the list takes O(1) time.
Printing the list takes O(n) time, where n is the number of tuples in the list.
Using a list comprehension to extract digits takes O(nk) time, where k is the average number of digits in each tuple.
Converting the string to a set takes O(k) time, where k is the total number of digits.
Converting the set back to a list and sorting takes O(k log k) time.
Printing the resulting list takes O(k) time.
Therefore, the overall time complexity of the code is O(nk + k log k).

Space Complexity:

Initializing the list takes O(n) space, where n is the number of tuples in the list.
Extracting digits using list comprehension creates a new list which takes O(nk) space.
Converting the string to a set takes O(k) space.
Converting the set back to a list takes O(k) space.
Therefore, the overall space complexity of the code is O(nk + 2k) or simply O(nk).



Similar Reads

Python - Extract tuple supersets from List
Sometimes, while working with Python tuples, we can have a problem in which we need to extract all the tuples, which have all the elements in target tuple. This problem can have application in domains such as web development. Let's discuss certain way in which this problem can be solved. Input : test_list = [(5, 6, 6), (4, 2, 7), (9, 6, 5, 6)] test
5 min read
Python - Extract Kth element of every Nth tuple in List
Given list of tuples, extract Kth column element of every Nth tuple. Input :test_list = [(4, 5, 3), (3, 4, 7), (4, 3, 2), (4, 7, 8), (6, 4, 7), (2, 5, 7), (1, 9, 10), (3, 5, 7)], K = 2, N = 3 Output : [3, 8, 10] Explanation : From 0th, 3rd, and 6th tuple, 2nd elements are 3, 8, 10. Input :test_list = [(4, 5, 3), (3, 4, 7), (4, 3, 2), (4, 7, 8), (6,
8 min read
Python | Sort tuple list by Nth element of tuple
Sometimes, while working with Python list, we can come across a problem in which we need to sort the list according to any tuple element. These must be a generic way to perform the sort by particular tuple index. This has a good utility in web development domain. Let's discuss certain ways in which this task can be performed. Method #1: Using sort(
8 min read
Python - Flatten tuple of List to tuple
Sometimes, while working with Python Tuples, we can have a problem in which we need to perform the flattening of tuples, which have listed as their constituent elements. This kind of problem is common in data domains such as Machine Learning. Let's discuss certain ways in which this task can be performed. Input : test_tuple = ([5], [6], [3], [8]) O
7 min read
Python Program to Convert Tuple Matrix to Tuple List
Given a Tuple Matrix, flatten to tuple list with each tuple representing each column. Example: Input : test_list = [[(4, 5), (7, 8)], [(10, 13), (18, 17)]] Output : [(4, 7, 10, 18), (5, 8, 13, 17)] Explanation : All column number elements contained together. Input : test_list = [[(4, 5)], [(10, 13)]] Output : [(4, 10), (5, 13)] Explanation : All co
8 min read
Python Program to find tuple indices from other tuple list
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), (7, 6), (1, 0), (3, 4)], search_tup = [(3, 4), (8, 9), (7, 6), (1, 2)]Output : [3, 1]Explanation : (3, 4) from search list is found on 3rd index on test_list, hence included in r
8 min read
Python Program to Merge tuple list by overlapping mid tuple
Given two lists that contain tuples as elements, the task is to write a Python program to accommodate tuples from the second list between consecutive tuples from the first list, after considering ranges present between both the consecutive tuples from the first list. Input : test_list1 = [(4, 8), (19, 22), (28, 30), (31, 50)], test_list2 = [(10, 12
11 min read
Python - Extract Item with Maximum Tuple Value
Sometimes, while working with Python dictionaries, we can have a problem in which we need to extract the item with maximum value of value tuple index. This kind of problem can have application in domains such as web development. Let's discuss certain ways in which this task can be performed. Input : test_dict = {'gfg' : (4, 6), 'is' : (7, 8), 'best
5 min read
Python - Extract Even elements in Nested Mixed Tuple
Sometimes, while working with Python tuples, we can have a problem in which we need to get all the even elements from the tuple. The tuples can be nested or mixed. This kind of problem can occur in data domains. Let's discuss certain ways in which this task can be performed. Input : test_tuple = (5, (7, 6, (2, (4, )))) Output : ((6, (2, (4, ))), )
4 min read
Python | Replace tuple according to Nth tuple element
Sometimes, while working with data, we might have a problem in which we need to replace the entry in which a particular entry of data is matching. This can be a matching phone no, id etc. This has it's application in web development domain. Let's discuss certain ways in which this task can be performed. Method #1: Using loop + enumerate() This task
8 min read
three90RightbarBannerImg