[python] Introduction to Functional Programming — map, filter, reduce

preview_player
Показать описание
As this is an introduction to FP in Python, I don't talk about all the features of these higher order functions.
Рекомендации по теме
Комментарии
Автор

This video deserve million views! Thank you so much

.hanhuuang
Автор

The order of these higher order functions is a bit weird in Python. To understand what it does you have to read from bottom to up or from right to left. This is better in JavaScript imo, where you can chain together functions and call them one after the other in the order that they are executed, like so:


So, instead of reading: reduce->filter->map like in Python

you read:
map->filter->reduce
which seems more natural

akashchoudhary
Автор

These videos you are making they're fantastic!

kisame_
Автор

Perfect video and content like always. You are rock!

oruchanasar
Автор

Brilliant video, very nice explanation 🙌

gergelynemeth
Автор

Hope you'll do more on this, was great

TheStickofWar
Автор

Great video! Although I have to ask, what is that squeeking/weird noise in the background?

BranisLPs
Автор

Can you show how to make a video like this please

.hanhuuang