Currently I am learning lambda
functions in Python 3.
Till now all I know about lambda
functions is that its an anonymous function which can take any number of arguments but can contain only one expression.
So my question is that why do we need lambda
functions if we can do the same using normal expression. I mean what was the actual purpose of introducing lambda
functions?