Python lambda表达式

func=lambda a: a+1

ret=func(99)

print(ret)

原文地址:https://www.cnblogs.com/my334420/p/6346976.html