匿名函数


 关键字lambda。以“ : ”分割,冒号前为参数,多个参数逗号分割;冒号后为返回值。匿名函数不能换行

add = lambda x,y:x+y
print(add(1,1))