Python lambda (Anonymous Functions)

In python, a function without name is known as anonymous function. As we know that def keyword is used to define a normal function, but to define anonymous function lambda keyword is used to create an anonymous function. Lambda functions can take any number of arguments but only one expression, which is evaluated and returned. … Continue reading Python lambda (Anonymous Functions)