#传递匿名函数 def test(a,b,func): result=func(a,b) print(result) test(11,22,lambda x,y:x+y)#传递为引用 利用匿名函数传递运算规则 文章来源: https://blog.csdn.net/BooGooMoo/article/details/90905817 标签 匿名函数 test