Functional Programming in Python Chapter 2
Functional Programming in Python Chapter 2
In functional programming, functions are treated as first-class citizens. This means that functions
passed as arguments to other functions, and returned as values from other functions. Python
to write flexible and reusable code that can be easily composed and modified.
Python functions are first-class objects, meaning they can be assigned to variables and
Here is an example:
def greet(name):
say_hello = greet
In this code, we assign the function `greet` to the variable `say_hello` and then call it,
function as a result.
Higher-order functions are powerful because they enable you to create more abstract and modular
code.
return operation(x, y)
return a + b
return a * b
parameter. By passing
different functions, we can change the behavior of `apply_operation`, making it more versatile.
3. Lambda Expressions
Lambda expressions, or anonymous functions, are a concise way to define simple functions
lambda expressions are often used with higher-order functions like `map`, `filter`, and `reduce`.
add = lambda x, y: x + y
numbers = [1, 2, 3, 4, 5]
In this example, we use a lambda function with `map` to apply a square operation to each item in
a list.
Python provides built-in functions `map`, `filter`, and `reduce` (from the functools module) that
support functional
programming. These functions allow for efficient processing of data without explicitly writing loops.
numbers = [1, 2, 3, 4, 5, 6]
even_numbers = list(filter(lambda x: x % 2 == 0, numbers))
The `filter` function selects elements based on a condition, while `map` applies a function to each
element.
Treating functions as first-class citizens and using higher-order functions allow for highly modular
readable and maintainable. In Python, this concept is particularly useful in situations where you
want to separate
data processing logic from specific implementations, making code easy to test and extend.