Python基础

Python匿名函数

2020-02-20  本文已影响0人  lvyz0207

Python匿名函数

优点:减少代码的重复性、模块化代码

lambda:
# 表达式
lambda argument1, argument2,... argumentN : expression
square = lambda x: x**2
square(3)
输出:9

squared = map(lambda x: x**2, [1, 2, 3, 4, 5])


对 iterable 中的每个元素,都运用 function 这个函数,最后返回一个新的可遍历的集合。

l = [1, 2, 3, 4, 5]
new_list = map(lambda x: x * 2, l) # [2, 4, 6, 8, 10]

filter() 函数表示对 iterable 中的每个元素,都使用 function 判断,    
并返回 True 或者 False,最后将返回 True 的元素组成一个新的可遍历的集合。

l = [1, 2, 3, 4, 5]
new_list = filter(lambda x: x % 2 == 0, l) # [2, 4]

reduce(function, iterable) 函数,它通常用来对一个集合做一些累积操作

l = [1, 2, 3, 4, 5]
product = reduce(lambda x, y: x * y, l) # 1*2*3*4*5 = 120
上一篇下一篇

猜你喜欢

热点阅读