Python内置函数—filter(过滤器)

为什么80%的码农都做不了架构师?>>> hot3.png

filter(function or None, iterable)

filter函数用于过滤序列。filter()把传入的函数依次作用于每个元素,然后根据返回值是True还是False决定保留还是丢弃该元素。

 

对字符串lst去空:

>>> lst = ['a', 'b', '', 'c', 'd']
>>> lst
['a', 'b', '', 'c', 'd']
>>> lst2 = ','.join(filter(lambda x: x, lst))
>>> lst2
'a,b,c,d'
 

对一个list, 保留奇数:

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

转载于:https://my.oschina.net/xxWang/blog/741057

你可能感兴趣的:(Python内置函数—filter(过滤器))