Skip to main content

Lambda Functions

Lambda Functions in Python

Lambda functions in Python are anonymous functions that can be defined and declared inline with the rest of the code.

What is a lambda function in Python

Lambda functions take in parameters and return a value like a regular Python function, but are usually only used once and therefore not given a name. Instead, they are passed as an argument to other functions or used in an expression.

Example 1: Defining a lambda function to multiply two numbers

multiply = lambda x, y: x * y

# calling the lambda function
print(multiply(5, 3)) # output: 15

Example 2: Using a lambda function as an argument to the map() function

my_list = [1, 2, 3, 4, 5]
squared_list = list(map(lambda x: x**2, my_list))

# printing the squared list
print(squared_list) # output: [1, 4, 9, 16, 25]

In the first example, a lambda function multiply is defined that takes in two parameters and returns their product. In the second example, the lambda function is used as an argument to the map() function to square each element in the list. Lambda functions are often used in conjunction with other functions to make code more concise and readable.

Benefits and reasons to use lambda functions in Python programming

  1. Concise code: Lambda functions can be defined in a single line of code, making them easy to use and read.

  2. Easy to use functions from another Python file: You can use lambda functions to define a function that can be used from another Python file.

  3. Functional programming: Lambda functions enable Python programmers to use functional programming techniques, making it easier to write pure and modular code.

Example of a lambda function

x = lambda a : a + 10
print(x(5)) # output: 15

In this example, a lambda function is defined with the parameter a. The function adds 10 to the parameter and returns the result. The lambda function is then called with the parameter 5, which results in the output of 15.

Examples and use cases for lambda functions in Python

  1. Sorting a list of tuples: Lambda functions can be used as a key argument in the sorted() function to sort a list of tuples based on a specific element in the tuple.
 # Sorting a list of tuples based on the age of a person
 people = [('Jane', 23), ('John', 19), ('Adam', 25), ('Kate', 18)]
 sorted_people = sorted(people, key=lambda x: x[1])
 print(sorted_people)
 # Output: [('Kate', 18), ('John', 19), ('Jane', 23), ('Adam', 25)]
  1. Filtering a list: Lambda functions can be used with filter() to create a new list that satisfies a specific condition.
 # Filter a list of numbers greater than 5
 numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
 filtered_numbers = list(filter(lambda x: x > 5, numbers))
 print(filtered_numbers)
 # Output: [6, 7, 8, 9, 10]

Differences between lambda and regular functions in Python

  1. Syntax: Lambda functions are written in a single line of code and don't require the def keyword. Regular functions are defined using the def keyword and can be written in multiple lines.

  2. Arguments: Lambda functions can have any number of arguments but can only have one expression. Regular functions can take any number of arguments and can have multiple expressions.

  3. Name: Lambda functions are anonymous, meaning they don't have a name. Regular functions have a name that is used to call the function.

  4. Scope: Lambda functions are limited in terms of scope and can only access global variables. Regular functions have a wider scope and can access both local and global variables.

Best practices for using lambda functions in Python

  1. Keep your Lambda functions short and simple: Lambda functions are best used for small operations that can be written concisely in a single line of code. If your function is too long or complex, it might be better to write a regular Python function.

  2. Use Lambda functions with map(), filter(), and reduce(): These higher-order functions require a function argument, and Lambda functions are a great way to create simple functions on the fly.

  3. Don't overuse Lambda functions: While Lambda functions can be useful for certain tasks, they can also make your code less readable if overused. If your Lambda expression is getting too long, it might be better to write a regular Python function instead.

Advanced lambda concepts, such as map(), reduce(), and filter()

The map() function is used to apply a given lambda function to each element in a collection. The result is a new collection with the lambda function applied to every element. Here is an example of using the map function to add a constant value to each element in a list using a lambda function:

numbers = [1, 2, 3, 4, 5]
add_two = lambda x: x + 2
result = map(add_two, numbers)
print(list(result)) # [3, 4, 5, 6, 7]

The reduce() function is used to apply a given lambda function to a collection and reduce it to a single value. The lambda function should take two arguments and return a single value. Here is an example of using the reduce function to calculate the product of all numbers in a list using a lambda function:

from functools import reduce
numbers = [1, 2, 3, 4, 5]
multiply = lambda x, y: x * y
result = reduce(multiply, numbers)
print(result) # 120

The filter() function is used to apply a given lambda function to each element in a collection and filter out elements that do not meet a certain condition. The result is a new collection with only the elements that meet the condition. Here is an example of using the filter function to only keep even numbers in a list using a lambda function:

numbers = [1, 2, 3, 4, 5]
is_even = lambda x: x % 2 == 0
result = filter(is_even, numbers)
print(list(result)) # [2, 4]

Exploring the limitations and caveats of using lambda functions in Python code

One limitation of lambda functions is that they are restricted to a single expression. This means that more complex operations, such as a loop or multiple statements, cannot be performed within a lambda function. For example, if we wanted to create a power function in Python using a loop, we cannot use lambda functions.

Another limitation of lambda functions is that they cannot be used to define recursive functions. Recursion requires a function to call itself, and a lambda function cannot refer to itself.

Furthermore, using lambda functions can make the code harder to read and understand, especially for complex operations. In such cases, it may be better to use a regular Python function instead.

In addition, the use of lambda functions in performance-critical code may incur a small overhead due to the function creation process. In such cases, it may be better to use a pre-defined Python function, such as the exp() function from the math library.

# Example of using the exp() function
import math
x = 2.0
y = math.exp(x)
Updated: 07/01/2023 - 20:00
Profile picture for user AliaksandrSumich
Python engineer, expert in third-party web services integration.