#匿名 函数 def getTest(x): return x*x print(getTest(2)) print(list(map(lambda x:x+x,[1,2,3,4]))) f = lambda x : x*x print(f(5))