In this course, youβll learn how to approach functional programming in Python. Youβll start with the absolute basics of Functional Programming (FP). After that, youβll see hands-on examples for common FP patterns available, like using immutable data structures and the filter(), map(), and reduce() functions. Youβll end the course with actionable tips for parallelizing your code to make it run faster.
Youβll cover:
- What functional programming is
- How you can use immutable data structures to represent your data
- How to use
filter(),map(), andreduce() - How to do parallel processing with
multiprocessingandconcurrent.futures

squeakyboots on April 27, 2021
Thanks so much for this course! Iβm excited to try applying this to my own API calls when something might be running more slowly than Iβd like.