filter()

Functional

Returns an iterator of elements for which the function returns True.

Signature

filter(function, iterable)

Returns

filter

Example

nums = [1, 2, 3, 4, 5, 6, 7, 8]
evens = list(filter(lambda x: x % 2 == 0, nums))
print(evens)  # [2, 4, 6, 8]

About filter()

filter is a Python functional function with the signature filter(function, iterable). Returns an iterator of elements for which the function returns True. It returns a value of type filter.

Python provides a rich set of built-in functions and standard library modules that cover common programming tasks. Understanding these functions helps you write more idiomatic, efficient Python code. The filterfunction is commonly used in data processing, web development, scripting, and automation tasks.

When working with filter(), consider edge cases like empty inputs, None values, and type mismatches. Python's duck typing means many built-in functions work with any object that implements the required protocol (e.g., __len__ for len(), __iter__ for iteration). This flexibility is a key strength of Python's design philosophy.

Related Functions