I wrote a post about map, filter and reduce on Python a while ago on quora.
In this post, I'm going to talk about map filter and reduce in detail with examples.
Let's get started:
Basically map, filter and reduce gives functional programming features to Python.
But before diving into these three functions let me talk briefly about lambda(Hopefully I'll be writing another post about lambdas)
Lambda
Let...