def make_fun(n):
return lambda x:x+n
f=make_fun(15)print(f(5))请看上面的代码,其中匿名函数中x是怎么回事,并没有传参数,还能够代码运行,最后输出结果是20
千巷猫影
相关分类