Open In App

Python – Filter Tuples by Kth element from List

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

Given a list of tuples, filter by Kth element presence in List.

Input : test_list = [(“GFg”, 5, 9), (“is”, 4, 3), (“best”, 10, 29)], check_list = [4, 2, 3, 10], K = 2 
Output : [(‘is’, 4, 3)] 
Explanation : 3 is 2nd element and present in list, hence filtered tuple. 

Input : test_list = [(“GFg”, 5, 9), (“is”, 4, 3), (“best”, 10, 29)], check_list = [4, 2, 3, 10], K = 1 
Output : [(‘is’, 4, 3), (‘best’, 10, 29)] 
Explanation : 4 and 10 are 1st elements and present in list, hence filtered tuples.

Method #1: Using list comprehension

In this, we check for each element of Tuple’s Kth element to be present in list in shorthand using list comprehension and containment is tested using in operator.

Python3




# Python3 code to demonstrate working of
# Filter Tuples by Kth element from List
# Using list comprehension
 
# initializing list
test_list = [("GFg", 5, 9), ("is", 4, 3), ("best", 10, 29)]
 
# printing original list
print("The original list is : " + str(test_list))
 
# initializing check_list
check_list = [4, 2, 8, 10]
 
# initializing K
K = 1
 
# checking for presence on Kth element in list
# one liner
res = [sub for sub in test_list if sub[K] in check_list]
 
# printing result
print("The filtered tuples : " + str(res))


Output

The original list is : [('GFg', 5, 9), ('is', 4, 3), ('best', 10, 29)]
The filtered tuples : [('is', 4, 3), ('best', 10, 29)]

Time complexity: O(n), where n is the length of the test_list.
Auxiliary space: O(m), where m is the length of the resulting list after filtering.

Method #2 : Using filter() + lambda

In this, lambda function checks for element presence and filter performs task of filtering tuples.

Python3




# Python3 code to demonstrate working of
# Filter Tuples by Kth element from List
# Using filter() + lambda
 
# initializing list
test_list = [("GFg", 5, 9), ("is", 4, 3), ("best", 10, 29)]
 
# printing original list
print("The original list is : " + str(test_list))
 
# initializing check_list
check_list = [4, 2, 8, 10]
 
# initializing K
K = 1
 
# filter() perform filter, lambda func. checks for presence
# one liner
res = list(filter(lambda sub: sub[K] in check_list, test_list))
 
# printing result
print("The filtered tuples : " + str(res))


Output

The original list is : [('GFg', 5, 9), ('is', 4, 3), ('best', 10, 29)]
The filtered tuples : [('is', 4, 3), ('best', 10, 29)]

Time complexity: O(n), where n is the length of the test_list
Auxiliary space: O(m), where m is the length of the check_list.

Method #3: Using for loop

Steps:

  1. Initialize the test_list and check_list variables.
  2. Initialize K to the index of the Kth element in the tuples.
  3. Initialize an empty list called res to hold the filtered tuples.
  4. Iterate over the tuples in test_list using a for loop.
  5. Check if the Kth element of the current tuple is in check_list.
  6. If it is, append the tuple to res.
  7. Print the filtered tuples.

Python3




# Python3 code to demonstrate working of
# Filter Tuples by Kth element from List
# Using for loop
 
# initializing list
test_list = [("GFg", 5, 9), ("is", 4, 3), ("best", 10, 29)]
 
# printing original list
print("The original list is : " + str(test_list))
 
# initializing check_list
check_list = [4, 2, 8, 10]
 
# initializing K
K = 1
 
# initializing empty result list
res = []
 
# iterating over tuples in test_list
for tup in test_list:
    # checking if Kth element is in check_list
    if tup[K] in check_list:
        # appending tuple to result list
        res.append(tup)
 
# printing result
print("The filtered tuples : " + str(res))


Output

The original list is : [('GFg', 5, 9), ('is', 4, 3), ('best', 10, 29)]
The filtered tuples : [('is', 4, 3), ('best', 10, 29)]

Time Complexity: O(n), where n is the number of tuples in test_list.

Auxiliary Space: O(k), where k is the number of tuples that pass the filter. The space used by the res list.

Method#4: Using the Recursive method:

Algorithm:

  1. Check if the input list `test_list` is empty or not, If yes, then return an empty list.
  2. If not, check if the Kth element of the first tuple in `test_list` is in the `check_list`.
  3. If it is, append the first tuple to the result list and recursively call the function on the remaining part of the list (`test_list[1:]`) with the same `K` and `check_list` arguments.
  4. If it is not, recursively call the function on the remaining part of the list (`test_list[1:]`) with the same `K` and `check_list` arguments.
  5. Return the result list obtained from steps 3 and 4.

Below is the implementation of the above approach:

Python3




# Python program for the above approach
 
# Function to filter tuples
def filter_tuples(test_list, K, check_list):
    if not test_list:
        return []
    if test_list[0][K] in check_list:
        return [test_list[0]] + filter_tuples(test_list[1:], K, check_list)
    else:
        return filter_tuples(test_list[1:], K, check_list)
 
 
# initializing list
test_list = [("GFg", 5, 9), ("is", 4, 3), ("best", 10, 29)]
 
# initializing check_list
check_list = [4, 2, 8, 10]
 
# initializing K
K = 1
 
# calling function and storing result in res
res = filter_tuples(test_list, K, check_list)
 
# printing original list
print("The original list is : " + str(test_list))
 
# printing result
print("The filtered tuples : " + str(res))


Output

The original list is : [('GFg', 5, 9), ('is', 4, 3), ('best', 10, 29)]
The filtered tuples : [('is', 4, 3), ('best', 10, 29)]

The time complexity of this recursive function is O(n), where n is the number of tuples in the input list. This is because the function visits each tuple in the list once.

The space complexity is also O(n) because the function creates a new list to store the filtered tuples. However, in the worst case where all tuples in the input list are selected, the space complexity can be O(n^2) due to the recursive calls creating new lists.



Similar Reads

Python - Filter all uppercase characters Tuples from given list of tuples
Given a Tuple list, filter tuples that contain all uppercase characters. Input : test_list = [("GFG", "IS", "BEST"), ("GFg", "AVERAGE"), ("GfG", ), ("Gfg", "CS")] Output : [('GFG', 'IS', 'BEST')] Explanation : Only 1 tuple has all uppercase Strings. Input : test_list = [("GFG", "iS", "BEST"), ("GFg", "AVERAGE"), ("GfG", ), ("Gfg", "CS")] Output : [
8 min read
Python | Find the tuples containing the given element from a list of tuples
Given a list of tuples, the task is to find all those tuples containing the given element, say n. Examples: Input: n = 11, list = [(11, 22), (33, 55), (55, 77), (11, 44)] Output: [(11, 22), (11, 44)] Input: n = 3, list = [(14, 3),(23, 41),(33, 62),(1, 3),(3, 3)] Output: [(14, 3), (1, 3), (3, 3)] There are multiple ways we can find the tuples contai
6 min read
Python | Filter tuples according to list element presence
Sometimes, while working with records, we can have a problem in which we have to filter all the tuples from a list of tuples, which contains atleast one element from a list. This can have applications in many domains working with data. Let's discuss certain ways in which this task can be performed. Method #1: Using list comprehension Using list com
8 min read
Python | Remove duplicate tuples from list of tuples
Given a list of tuples, Write a Python program to remove all the duplicated tuples from the given list. Examples: Input : [(1, 2), (5, 7), (3, 6), (1, 2)] Output : [(1, 2), (5, 7), (3, 6)] Input : [('a', 'z'), ('a', 'x'), ('z', 'x'), ('a', 'x'), ('z', 'x')] Output : [('a', 'z'), ('a', 'x'), ('z', 'x')] Method #1 : List comprehension This is a naive
5 min read
Python | Remove tuples from list of tuples if greater than n
Given a list of a tuple, the task is to remove all the tuples from list, if it's greater than n (say 100). Let's discuss a few methods for the same. Method #1: Using lambda STEPS: Initialize a list of tuples: ini_tuple = [('b', 100), ('c', 200), ('c', 45), ('d', 876), ('e', 75)]Print the initial list: print("intial_list", str(ini_tuple))Define the
6 min read
Python | Remove tuples having duplicate first value from given list of tuples
Given a list of tuples, the task is to remove all tuples having duplicate first values from the given list of tuples. Examples: Input: [(12.121, 'Tuple1'), (12.121, 'Tuple2'), (12.121, 'Tuple3'), (923232.2323, 'Tuple4')] Output: [(12.121, 'Tuple1'), (923232.2323, 'Tuple4')]Input: [('Tuple1', 121), ('Tuple2', 125), ('Tuple1', 135), ('Tuple4', 478)]
7 min read
Python | Count tuples occurrence in list of tuples
Many a time while developing web and desktop products in Python, we use nested lists and have several queries about how to find the count of unique tuples. Let us see how to get the count of unique tuples in the given list of tuples. Below are some ways to achieve the above task. Method #1: Using Iteration C/C++ Code # Python code to count unique #
5 min read
Python | Combining tuples in list of tuples
Sometimes, we might have to perform certain problems related to tuples in which we need to segregate the tuple elements to combine with each element of complex tuple element( such as list ). This can have application in situations we need to combine values to form a whole. Let's discuss certain ways in which this can be performed. Method #1: Using
7 min read
Python | Convert string tuples to list tuples
Sometimes, while working with Python we can have a problem in which we have a list of records in form of tuples in stringified form and we desire to convert them to a list of tuples. This kind of problem can have its occurrence in the data science domain. Let's discuss certain ways in which this task can be performed. Method 1 (Using eval() + list
4 min read
Python program to find Tuples with positive elements in List of tuples
Given a list of tuples. The task is to get all the tuples that have all positive elements. Examples: Input : test_list = [(4, 5, 9), (-3, 2, 3), (-3, 5, 6), (4, -6)] Output : [(4, 5, 9)] Explanation : Extracted tuples with all positive elements. Input : test_list = [(-4, 5, 9), (-3, 2, 3), (-3, 5, 6), (4, -6)] Output : [] Explanation : No tuple wit
10 min read
Practice Tags :