The Wayback Machine - https://web.archive.org/web/20240227161848/https://realpython.com/learning-paths/functional-programming/
Learning Path ⋅ Skills: Functional Programming Fundamentals
Functional programming, or FP for short, is a programming paradigm in which the primary method of computation is the evaluation of functions.
Functional programming typically plays a fairly small role in Python code, but it’s good to be familiar with it. At the very least, you’ll probably encounter it from time to time when you’re reading code written by others. You may also find situations where it’s helpful to use Python’s functional programming capabilities in your own code to make it more concise.
Learning Path ⋅ 9 Resources
#1
Course
Learn how to approach functional programming in Python. You'll cover what functional programming is, how you can use immutable data structures to represent your data, as well as how to use filter(), map(), and reduce().
#2
Course
Learn about Python lambda functions. You'll see how they compare with regular functions and how you can use them in accordance with best practices.
#3
Course
Learn what inner functions are in Python, how to define them, and what their main use cases are.
#4
Course
Learn how Python's map() works and how to use it effectively in your programs. You'll also learn how to use list comprehension and generator expressions to replace map() in a Pythonic and efficient way.
#5
Course
Learn how Python's filter() works and how to use it effectively in your programs. You'll also learn how to use list comprehension and generator expressions to replace filter() and make your code more Pythonic.
#6
#7
Course
A recursive function is one that calls itself. In this video course, you'll see what recursion is, how it works in Python, and under what circumstances you should use it.
#8
Course
Learn how to work with recursion in your Python programs by mastering concepts such as recursive functions and recursive data structures.
#9