python

超轻量级php框架startmvc

python基础教程之Filter使用方法

更新时间:2020-04-26 11:20:02 作者:startmvc
pythonFilterPython中的内置函数filter()主要用于过滤序列。和map类似,filter()也接收一个函数和

python Filter

Python中的内置函数filter()主要用于过滤序列。

和map类似,filter()也接收一个函数和序列,和map()不同的是,filter()把传入的函数依次作用于每个元素,然后根据返回值是

True还是False决定保留还是丢弃该元素。

例1:


number_list = range(-5, 5) 
less_than_zero = list(filter(lambda x: x < 0, number_list)) 
print(less_than_zero) 

上述例子的输出结果为:


[-5, -4, -3, -2, -1] 

例2:在一个list中,删掉偶数,只保留奇数,可以这么写:


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

改程序输出结果为:


[1, 5, 9, 15] 

注意:filter()函数返回的是一个Iterator,也就是一个迭代器,所以要强迫filter()完成计算结果,需要用list()函数获得所有结果并返回list。

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

python Filter python Filter详解 python Filter简单使用实例