MAGIC FUNCTIONS OF PYTHON
Have you ever heard about these three functions? map() filter() reduce() It is a part of functional programming. I call these as ‘MAGICAL FUNCTIONS’ because we can save the time and write shorter code. map(func, *iterables) map functions take two arguments as input. The first one is a function and second one is iterable object. … Continue reading MAGIC FUNCTIONS OF PYTHON
