Python filter()
Posted kwebi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python filter()相关的知识,希望对你有一定的参考价值。
Python内建的filter()
函数用于过滤序列
filter()
函数返回的是一个Iterator
filter()
也接收一个函数和一个序列
根据返回值是True
还是False
决定保留还是丢弃该元素
def odd_iter(): n = 1 while True: n = n + 2 yield n def not_divisible(n): return lambda x: x % n > 0 def primes(): yield 2 it = odd_iter() while True: n = next(it) yield n it = filter(not_divisible(n), it)
上面的代码用filter()过滤出素数
以上是关于Python filter()的主要内容,如果未能解决你的问题,请参考以下文章