python的filter基本用法

Posted ssh_alitheia

tags:

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

filter函数用来过滤数据。

1.基本示例:

def is_odd(n):
    return n % 2 == 1


newlist = filter(is_odd, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10])
print(f‘odd:{newlist}‘)
print(f‘odd:{list(newlist)}‘)

输出:

odd:<filter object at 0x10a801978>
odd:[1, 3, 5, 7, 9]

注意:

python3的filter返回时一个迭代器。

2.使用lambda

newlist = filter(lambda x: x % 2 == 1, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10])

3.filter的func携带额外参数

data = [
    {‘name‘: ‘jim‘, ‘money‘: 133, ‘home‘: ‘ame‘},
    {‘name‘: ‘tom‘, ‘money‘: 456, ‘home‘: ‘chin‘}
]
def func(v, a):
    if v.get(‘name‘) == a:
        return True
    return False
res = filter(lambda x: func(x, ‘tom‘), data)
print(f‘res:{list(res)}‘)

定义func的时候,携带多个参数,在filter调用时再使用一个lambda来完成额外参数的传递。

输出:

res:[{‘name‘: ‘tom‘, ‘money‘: 456, ‘home‘: ‘chin‘}]

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

python调试:pdb基本用法(转)

Python中的基本函数及其常用用法简析

angular 的 filter用法

java8 .stream().sorted().filter().map().collect()用法

Python filter用法

Python中的filter()函数的用法