Super Intermediate Python 3

preview_player
Показать описание
Raymond Chandler III
This talk is a follow up of my 2013 Super Advanced Python talk, but now will be much more focused on functional programming and data transformation. We will deep dive into the wonders of functional programming with Python.
Рекомендации по теме
Комментарии
Автор

the advantage of map and filter over list comprehensions is, that you could swap the threading model by importing another version of the map function. for example one could implement a map-function that runs all tasks in parallel instead of the synchronous built-in map-function.

Another advantage is, that itertools-funtions in general better compose than list-comprehensions

peterpeter-huiq