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之匿名函数的主要内容,如果未能解决你的问题,请参考以下文章