lambda表达式是一个匿名函数
通常是在需要一个函数,但是又不想费神去命名一个函数的场合下使用
最简单的例子
add = lambda x,y : x + y print add(3,5) #output: 8