1.def function(a):
b=a+1
return b
res=function(99)
2.function=lambda a:a+1
#创建形式参数a
#函数内容a+1
#并且把结果return