python filter 函数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python filter 函数相关的知识,希望对你有一定的参考价值。

filter 函数,是用来过滤一个序列使用的。接收两个参数(函数, 序列)

例如判断是否为偶数

1 def num(a)
2     if a%2==0
3         return a
4 
5 filter(num,1,2,3,4,5,6,7,8,910)

 

以上是关于python filter 函数的主要内容,如果未能解决你的问题,请参考以下文章

python函数_map()filter()和reduce()

Python函数式编程 map reduce filter

Python入门教程第38篇 filter()函数

Python 之内置函数:filter、map、reduce、zip、enumerate

python之lambda,filter,map,reduce函数

Python常用内置函数整理(lambda,reduce,zip,filter,map)