码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2019-11-06 09:15:42      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:div   def   color   test   pen   for   lis   end   int   

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函数

标签:div   def   color   test   pen   for   lis   end   int   

原文地址:https://www.cnblogs.com/raitorei/p/11802859.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!