At My Fingertips

Documentation

Documentation

Function from library builtins

filter(predicatesequence)

filterpredicatesequence

Given a function and a sequence, constructs a sequence only with the elements for which the function is true.

predicatefunction (boolean predicate) that given an element returns True iff the element is to be kept

sequencesequence to filter

Sequence of elements for which the predicate is true
Code
list(filter(lambda n: n >= 6, [4, 6, 7, 2, 10]))
Result
[6, 7, 10]

See also filter in the official documentation

Logo of PyTamaro

PyTamaro is a project created by the Lugano Computing Education Research Lab at the Software Institute of USI

Privacy PolicyPlatform Version 4153f55 (Wed, 02 Apr 2025 06:58:19 GMT)