This is O.R.Senthil Kumaran's blogspot on programming and technical things. The title is a line from "Zen of Python".
>>> def function(x):... return x*3... >>> function(2)6>>> func_with_lambda = lambda x: x*2>>> func_with_lambda(2)4>>> (lambda x: x*2)(2)4>>>