标签:with sof mic bsp int mil 结果 lambda size
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)
标签:with sof mic bsp int mil 结果 lambda size
原文地址:https://www.cnblogs.com/cxydnxs/p/12254912.html