#传递匿名函数 def test(a,b,func): result=func(a,b) print(result) test(11,22,lambda x,y:x+y)#传递为引用 利用匿名函数传递运算规则