Usage of the filter () function in Python, pythonfilter

Source: Internet
Author: User

Usage of the filter () function in Python, pythonfilter

The built-in filter () function of Python is used to filter sequences.

Similar to map (), filter () also receives a function and a sequence. When it is different from map (), filter () applies the input function to each element in sequence, and determines whether to retain or discard the element based on whether the returned value is True or False.

For example, to delete an even number in a list, only the odd number is retained. You can write this statement:

Def is_odd (n): return n % 2 = 1 filter (is_odd, [1, 2, 4, 5, 6, 9, 10, 15]) # result: [1, 5, 9, 15]

Delete an empty string from a sequence, which can be written as follows:

Def not_empty (s): return s and s. strip () filter (not_empty, ['A', '', 'B', None, 'C','']) # result: ['A ', 'B', 'C']

Obviously, the key to using the filter () function is to implement a "filter" function correctly.
Exercise

Please try to delete 1 ~ with filter ~ The prime number of 100.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.