python之匿名函数

Posted 贺言

tags:

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

1.fun=lambda x:x+2

   print(fun(10))                //输出结果为12

2.name=‘alex‘

   func=lambda x:x.startswith(‘a‘)

   print(func(name))           //输出结果为True

3.fun=lambda x,y,z:x+y+z

   res=fun(1,2,3)

   print(res)                       //输出结果为6

4.fun=lambda x,y,z:(x+1,y+1)

   res=fun(1,2)

   print(res)                         //输出结果为(2,3)

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

python 之匿名函数

python函数式编程之匿名函数装饰器偏函数

python之内置函数匿名函数递归

Python函数之匿名函数

python基础之匿名函数内置函数

Python之匿名函数及递归