淘先锋技术网
首页
1
2
3
4
5
6
7
python lambda函数的用法
a = lambda x,y,z:(x+8)*y-z
print(a(5,6,8))
要点:
1,lambda 函数不能包含命令,
2,包含的表达式不能超过一个。