• Articles
  • Tutorials
  • Interview Questions

Python Lambda Functions - A Beginner's Guide

Tutorial Playlist

Lambda Functions in Python

Python lambda functions are small, anonymous functions that can be used to perform simple tasks. They are often used in conjunction with other Python functions, such as the map() and filter() functions.

To create a lambda function, you use the lambda keyword followed by a list of parameters and a body expression. The body expression is a single expression that evaluates to a value.

For example, the following lambda function returns the maximum value in a list:

lambda list: max(list)

This lambda function takes a list as its only parameter and returns the maximum value in the list.

Lambda functions are often used to simplify code. For example, the following code can be written using a lambda function:

def max_value(list):
return max(list)
numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
max_value = max_value(numbers)
print(max_value)

This code can be rewritten as follows:

numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
max_value = lambda list: max(list)
max_value = max_value(numbers)
print(max_value)

The second version of the code is shorter and easier to read. It also uses a lambda function, which is more efficient than creating a named function.

Lambda functions can be used in a variety of ways. They can be used to filter lists, to map values to new values, and perform other simple tasks. They are a powerful tool that can be used to simplify your Python code.

Interested in learning Python? Check out the Python Training

Lambda Function with map() in Python

Here is a brief explanation of how to use lambda functions with the map() function in Python:

The map() the function takes two arguments: a lambda function and a list. The lambda function is used to map the values in the list to new values, and the new list is returned.

For example, the following code maps a list of strings to their lengths:

strings = ['hello', 'world', 'python']
lengths = map(lambda string: len(string), strings)
print(list(lengths))

This code will print the following output:

[5, 5, 6]

The lambda function in this example takes a string as its only parameter and returns the length of the string. The map() function then uses this lambda function to map the values in the strings list to their lengths. The new list is then printed to the console.

Lambda functions can be used with the map() function to perform a variety of tasks. For example, you can use them to:

  • Calculate the factorial of a number
  • Reverse a string
  • Convert a list of numbers to a list of strings
  • Filter a list of values

Properties of Python Lambda Functions

Here are some of the properties of Python lambda functions:

  • Anonymous: Lambda functions are anonymous, meaning they do not have a name. This makes them ideal for short, one-off tasks.
  • Inline: Lambda functions can be defined inline, meaning they can be defined within the same line of code as the function call. This makes them even more concise and easier to read.
  • Single expression: Lambda functions can only contain a single expression. This expression is evaluated and the result is returned.
  • Can take arguments: Lambda functions can take arguments, just like regular functions. However, lambda functions can only have a single expression, so the arguments must be used in that expression.
  • Can be assigned to variables: Lambda functions can be assigned to variables, just like regular functions. This allows you to store the lambda function for later use.
  • Can be used with other functions: Lambda functions can be used with other functions, such as the map() and filter() functions. This allows you to perform complex tasks with ease.

Course Schedule

Name Date Details
Python Course 27 Apr 2024(Sat-Sun) Weekend Batch
View Details
Python Course 04 May 2024(Sat-Sun) Weekend Batch
View Details
Python Course 11 May 2024(Sat-Sun) Weekend Batch
View Details

Full-Stack-ad.jpg