Python : filter() function | Tutorial & Examples

In this article we will discuss when & how to use python’s filter() function with lambda

filter() function in python

Python provides a method to filter out contents from a given sequence that can be a list, string or tuple etc.

filter(function, iterable)

Arguments:

  • An iterable sequence to be filtered.
  • a function that accepts an argument and returns bool i.e. True or False based on it’s logic.

Returns:

  • A new sequence of filtered contents.

Logic:
filter() iterates over all elements in the sequence and for each element it calls the given callback function. If this function returns False then that element is skipped, whereas elements for which it returned True are added into a new list. In the end it returns a new list with filtered contents based on the function passed to it as argument.

Let’s understand by examples

Filter a list of strings in Python using filter()

Suppose we have a list of strings i.e.

# List of string
listOfStr = ['hi', 'this' , 'is', 'a', 'very', 'simple', 'string' , 'for', 'us']

Now let’s filter the contents of list and keep the strings with length 2 only using filter() i.e.

filteredList = list(filter(isOfLengthFour , listOfStr))

print('Filtered List : ', filteredList)

Output:

Filtered List :  ['hi', 'is', 'us']

So, filter() iterated over all the strings in given list and the called isOfLengthFour() for each string element. String elements for which isOfLengthFour() returned True were kept in a separate sequence and returned.

Using filter() with Lambda function

As you can see that we have created a separate function isOfLengthFour() and passed it to filter() function. We can completely avoid the creation of these kind of one time small function by using lambda function.
Let’s pass a lambda function to filter() for selecting strings with length 2 only from the list i.e.

filteredList = list(filter(lambda x : len(x) == 2 , listOfStr))

print('Filtered List : ', filteredList)

Output:

Filtered List :  ['hi', 'is', 'us']

It worked same as the previous example but we avoided creating extra function by using a lambda function.

Filter characters from a string in Python using filter()

We can also use filter() with a string as an iterable sequence and can filter out characters from it.

Suppose we have a string i.e.

strObj = 'Hi this is a sample string, a very sample string'

Now let’s use filter() to remove or filter all occurrences of characters ‘s’ and ‘a’ from the above string i.e.

filteredChars = ''.join((filter(lambda x: x not in ['a', 's'], strObj)))

print('Filtered Characters  : ', filteredChars)

Output:

Filtered Characters  :  Hi thi i  mple tring,  very mple tring

filter() basically returned a list of characters from above string by filtered all occurrences of ‘s’ & ‘a’. Then by using join() we joined the filtered list of characters to a single string.

Filter an array in Python using filter()

Suppose we have two array i.e.

array1 = [1,3,4,5,21,33,45,66,77,88,99,5,3,32,55,66,77,22,3,4,5]

array2 = [5,3,66]

Now we want to filter the contents in array1 i.e. by removing numbers from array1 which are common in array1 and array2. For example new array should be,

[1, 4, 21, 33, 45, 77, 88, 99, 32, 55, 77, 22, 4]

Now let’s see how to do that using filter() and lambda function

filteredArray = list(filter(lambda x : x not in array2, array1))

print('Filtered Array  : ', filteredArray)

Output:

Filtered Array  :  [1, 4, 21, 33, 45, 77, 88, 99, 32, 55, 77, 22, 4]

It basically filtered out the elements from array1 which were present in array2.

Complete example is as follows,

'''
Check if given string's length is 2
'''
def isOfLengthFour(strObj):
    if len(strObj) == 2:
        return True
    else:
        return False

def main():
    # List of string
    listOfStr = ['hi', 'this' , 'is', 'a', 'very', 'simple', 'string' , 'for', 'us']

    print('Original List : ', listOfStr)

    print('*** Filter list using filter() and a function ***')

    filteredList = list(filter(isOfLengthFour , listOfStr))

    print('Filtered List : ', filteredList)

    print('*** Filter list using filter() and a Lambda Function ***')

    filteredList = list(filter(lambda x : len(x) == 2 , listOfStr))

    print('Filtered List : ', filteredList)

    print('*** Filter characters from a string using filter() ***')

    strObj = 'Hi this is a sample string, a very sample string'

    filteredChars = ''.join((filter(lambda x: x not in ['a', 's'], strObj)))

    print('Filtered Characters  : ', filteredChars)

    print('*** Filter an array in Python using filter() ***')

    array1 = [1,3,4,5,21,33,45,66,77,88,99,5,3,32,55,66,77,22,3,4,5]

    array2 = [5,3,66]

    filteredArray = list(filter(lambda x : x not in array2, array1))

    print('Filtered Array  : ', filteredArray)


if __name__ == '__main__':
    main()

Output:

Original List :  ['hi', 'this', 'is', 'a', 'very', 'simple', 'string', 'for', 'us']
*** Filter list using filter() and a function ***
Filtered List :  ['hi', 'is', 'us']
*** Filter list using filter() and a Lambda Function ***
Filtered List :  ['hi', 'is', 'us']
*** Filter characters from a string using filter() ***
Filtered Characters  :  Hi thi i  mple tring,  very mple tring
*** Filter an array in Python using filter() ***
Filtered Array  :  [1, 4, 21, 33, 45, 77, 88, 99, 32, 55, 77, 22, 4]

Leave a Comment

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Scroll to Top