About 147,000,000 results
Open links in new tab
  1. Python's filter (): Extract Values From Iterables

    In this step-by-step tutorial, you'll learn how Python's filter () works and how to use it effectively in your programs. You'll also learn how to use list comprehension and generator expressions to …

  2. filter () in python - GeeksforGeeks

    Sep 1, 2025 · filter () function is used to extract elements from an iterable (like a list, tuple or set) that satisfy a given condition. It works by applying a function to each element and keeping only …

  3. Python filter () Function - W3Schools

    Definition and Usage The filter() function returns an iterator where the items are filtered through a function to test if the item is accepted or not.

  4. Python filter(): Keep What You Need - DataCamp

    Jun 27, 2025 · Learn how to use Python's filter () function to extract items from lists or other iterables. Understand the key differences between filter and similar Python tools.

  5. How to Filter List Elements in Python By Practical Examples

    Summary: in this tutorial, you’ll learn how to filter list elements by using the built-in Python filter() function. Sometimes, you need to iterate over elements of a list and select some of them …

  6. Python filter () - Programiz

    In this tutorial, we will learn about the Python filter () function with the help of examples.

  7. Python filter () Function - Complete Guide with Examples ...

    Learn how to use Python’s filter () function with clear syntax, beginner examples, and real-life use cases. Master filtering lists, dictionaries, and more efficiently!