匿名函数(lambda)就是不需要显式的指定函数名
def calc(x,y): return x**y print(calc(2,5)) #换成匿名函数 calc = lambda x,y:x**y print(calc(2,5))
和map()函数一起使用
res1 = map(lambda x:x**2,[1,5,7,8]) for i in res1: print(i) # 输出 1 25 49 64
和filter()函数一起使用
res2 = filter(lambda x:x%2,[i for i in range(1,11)]) for i in res2: print(i) # 输出 1 3 5 7 9
来源:https://www.cnblogs.com/shibojie/p/11658262.html