Lamda, Map, Filter, Reduce in python 

In Python, the lambda keyword is used to define anonymous functions. Anonymous functions are functions that are defined without a name. They are often used as a quick way to define a function for use in a single expression. The map() function is used to apply a function to every element in an iterable object, …

Lamda, Map, Filter, Reduce in python  Read More »