python_匿名函数

Posted zl0919

tags:

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

python 的 匿名函数

语法:lambda[arg1 [,arg2,.....argn]]:expression

如下实例:

    sum = lambda arg1, arg2: arg1 + arg2

    #调用sum函数
    print "Value of total : ", sum( 10, 20 )
    print "Value of total : ", sum( 20, 20 )

以上实例输出结果:

    Value of total : 30

    Value of total :  40

扩展: lambda 作为参数

  def test(a,b,func):
    result = func(a, b)
   return result

  func_new = input("请输入一个匿名函数:")

  num = test(12,34,func_new)

  print(num)



 








以上是关于python_匿名函数的主要内容,如果未能解决你的问题,请参考以下文章

python编程_匿名函数_lambda

函数式编程——匿名函数

python的匿名函数lambda解释及用法

python的匿名函数lambda解释及用法

python入门第十六天__匿名函数,返回函数,闭包

Python学习笔记__4.3章 匿名函数(简洁函数)