The lambda operatorIn Python, functions are first-class objects
You can also create anonymous functions with lambdaa = lambda x,y: x+y ... b = a(3,4) |
<<< | O'Reilly OSCON 2000, Introduction to Python, Slide 85 July 17, 2000, beazley@cs.uchicago.edu |
>>> |