美文网首页Python基础
Python匿名函数

Python匿名函数

作者: lvyz0207 | 来源:发表于2020-02-20 21:27 被阅读0次

    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
    

    相关文章

      网友评论

        本文标题:Python匿名函数

        本文链接:https://www.haomeiwen.com/subject/nkmfqhtx.html