16python的map函数,filter函数,reduce函数

Posted 星空月零

tags:

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

map

num_l = [1,6,8,9]
def map_test(func,array):
    ret = []
    for i in array:
        res = func(i)
        ret.append(res)
    return ret
def jia(x):
    return x+1

#内置函数
print(map_test(lambda  x:x+1,num_l))

print(map_test(jia,num_l))

#只能迭代一次
# res = map(lambda  x:x+1,num_l)
# for i in res:
#     print(i)
# print(list(res))

filter

#filter函数
movie_people=[alex_sb,wupeiqi_sb,linhaifeng,yuanhao_sb]
print(filter(lambda n:not n.endswith(sb),movie_people))


res=filter(lambda n:not n.endswith(sb),movie_people)
print(list(res))


print(list(filter(lambda n:not n.endswith(sb),movie_people)))

reduce

# def reduce_test(func,array):
#     res=array.pop(0)
#     for num in array:
#         res=func(res,num)
#     return res
#
# print(reduce_test(lambda x,y:x*y,num_l))

num_l=[1,2,3,100]
def reduce_test(func,array,init=None):
    if init is None:
        res=array.pop(0)
    else:
        res=init
    for num in array:
        res=func(res,num)
    return res

print(reduce_test(lambda x,y:x*y,num_l,100))

 

 

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

python filter()和map()函数

python 内置函数 map filter reduce

Python的map,reduce,filter函数

Python3版本中的filter函数,map函数和reduce函数

函数作用域,匿名函数,map,filter,reduce---Python重新开始第五天

map, reduce和filter(函数式编程)