filter() in python Last Updated : 11 Dec, 2024 Comments Improve Suggest changes Like Article Like Report The filter() method filters the given sequence with the help of a function that tests each element in the sequence to be true or not. Let's see a simple example of filter() function in python:Example Usage of filter() Python # Function to check if a number is even def even(n): return n % 2 == 0 a = [1, 2, 3, 4, 5, 6] b = filter(even, a) # Convert filter object to a list print(list(b)) Output[2, 4, 6] Explanation:Function: even function checks if a number is divisible by 2.Filter: The filter() applies this function to each item in numbers.Result: A new iterable containing only even numbers is returned.Let's explore filter() in detail:Python filter() SyntaxThe filter() method in Python has the following syntax:Syntax: filter(function, sequence)function: A function that defines the condition to filter the elements. This function should return True for items you want to keep and False for those you want to exclude.iterable: The iterable you want to filter (e.g., list, tuple, set).The result is a filter object, which can be converted into a list, tuple or another iterable type.Let us see a few examples of the filter() function in Python.Using filter() with lambdaFor concise conditions, we can use a lambda function instead of defining a named function. Python a = [1, 2, 3, 4, 5, 6] b = filter(lambda x: x % 2 == 0, a) print(list(b)) Output[2, 4, 6] Here, the lambda function replaces even and directly defines the condition x % 2 == 0 inline.Combining filter() with Other FunctionsWe can combine filter() with other Python functions like map() or use it in a pipeline to process data efficiently.Example: Filtering and Transforming Data Python a = [1, 2, 3, 4, 5, 6] # First, filter even numbers b = filter(lambda x: x % 2 == 0, a) # Then, double the filtered numbers c = map(lambda x: x * 2, b) print(list(c)) Output[4, 8, 12] Explanation:The filter() function extracts even numbers from numbers.The map() function doubles each filtered number.The combination simplifies complex data pipelines. Comment More infoAdvertise with us Next Article filter() in python pawan_asipu Follow Improve Article Tags : Misc Python Python-Built-in-functions python Practice Tags : Miscpythonpython Similar Reads Python Built in Functions Python is the most popular programming language created by Guido van Rossum in 1991. It is used for system scripting, software development, and web development (server-side). Web applications can be developed on a server using Python. Workflows can be made with Python and other technologies. Databas 6 min read abs() in Python The Python abs() function return the absolute value. The absolute value of any number is always positive it removes the negative sign of a number in Python. Example:Input: -29Output: 29Python abs() Function SyntaxThe abs() function in Python has the following syntax:Syntax: abs(number)number: Intege 3 min read Python - all() function The Python all() function returns true if all the elements of a given iterable (List, Dictionary, Tuple, set, etc.) are True otherwise it returns False. It also returns True if the iterable object is empty. Sometimes while working on some code if we want to ensure that user has not entered a False v 3 min read Python any() function Python any() function returns True if any of the elements of a given iterable( List, Dictionary, Tuple, set, etc) are True else it returns False. Example Input: [True, False, False]Output: True Input: [False, False, False]Output: FalsePython any() Function Syntaxany() function in Python has the foll 5 min read ascii() in Python Python ascii() function returns a string containing a printable representation of an object and escapes the non-ASCII characters in the string using \x, \u or \U escapes. It's a built-in function that takes one argument and returns a string that represents the object using only ASCII characters. Exa 3 min read bin() in Python Python bin() function returns the binary string of a given integer. bin() function is used to convert integer to binary string. In this article, we will learn more about Python bin() function. Example In this example, we are using the bin() function to convert integer to binary string. Python3 x = b 2 min read bool() in Python In Python, bool() is a built-in function that is used to convert a value to a Boolean (i.e., True or False). The Boolean data type represents truth values and is a fundamental concept in programming, often used in conditional statements, loops and logical operations.bool() function evaluates the tru 3 min read Python bytes() method bytes() method in Python is used to create a sequence of bytes. In this article, we will check How bytes() methods works in Python. Pythona = "geeks" # UTF-8 encoding is used b = bytes(a, 'utf-8') print(b)Outputb'geeks' Table of Contentbytes() Method SyntaxUsing Custom EncodingConvert String to Byte 3 min read chr() Function in Python chr() function returns a string representing a character whose Unicode code point is the integer specified. chr() Example: Python3 num = 97 print("ASCII Value of 97 is: ", chr(num)) OutputASCII Value of 97 is: a Python chr() Function Syntaxchr(num) Parametersnum: an Unicode code integerRet 3 min read Python dict() Function dict() function in Python is a built-in constructor used to create dictionaries. A dictionary is a mutable, unordered collection of key-value pairs, where each key is unique. The dict() function provides a flexible way to initialize dictionaries from various data structures.Example:Pythond=dict(One 4 min read Like