Python Tutorials
What is Python Lambda?
A lambda function in Python is a brief anonymous function with a single expression and unlimited number of arguments. It is called anonymous because it doesn’t have a name like a normal function, and it is defined using the keyword “lambda”.
Lambda functions are primarily used to build compact functions that can be passed as arguments to higher-order functions like map(), filter(), and reduce(). When a function is only required briefly and a named function does not need to be defined, lambda functions are also used.
Python lambda functions are crucial because they help make code more readable and concise. They also help to reduce the amount of code that needs to be written.
Looking to Learn Python? Book a Free Trial Lesson and match with top Python Tutors for concepts, projects and assignment help on Wiingy today!
Syntax of Python Lambda functions
The syntax of a lambda function is quite simple. It consists of the keyword “lambda”, followed by the arguments, a colon, and the expression. The general syntax of a lambda function is as follows:
Code example of a simple lambda function:
Here is an example of a simple lambda function that adds two numbers:
In the above example, the lambda function takes two arguments x and y, and returns their sum.
How Python Lambda functions work
Anonymous functions, or functions without a name, are created using lambda functions. When a function is only required temporarily and a named function does not need to be defined, anonymous functions can be useful.
A. Code example of a lambda function in action:
Here is an example of a lambda function being used with the built-in map() function to square a list of numbers:
In the above example, the lambda function takes one argument x, and returns its square. The map() function applies the lambda function to each element in the numbers list, and returns a new list with the squared values.
B. Comparison with regular functions:
Lambda functions can take arguments and return values, just like regular functions can. The main difference is that lambda functions are anonymous and are defined using the keyword “lambda”. Regular functions, on the other hand, are named and are defined using the keyword “def”.
Here is an example of a regular function that adds two numbers:
In this example, the add() function takes two arguments x and y, and returns their sum. The syntax is slightly different from the lambda function, but the result is the same.
Use cases of lambda functions
A. Simplifying code and reducing function definitions:
Code can be made simpler and with fewer function definitions by using lambda functions. To calculate the square of a number, for instance, a lambda function can be used rather than defining a separate function:
B. Using lambda functions in higher-order functions:
Higher-order functions like map(), filter(), and reduce() can take lambda functions as arguments. For example, a lambda function can be used with map() to convert a list of strings to uppercase:
C. Creating inline functions for quick calculations:
Inline functions for quick calculations can be made using lambda functions. For example, a lambda function can be used with sorted() to sort a list of tuples by the second item:
D. Code examples of lambda functions in different scenarios:
Lambda functions can be used in various scenarios, such as sorting, filtering, and mapping lists, as well as in GUI programming and web development. Here are a few examples:
Limitations of lambda functions
A. Difficulty in debugging and testing lambda functions:
Since lambda functions are anonymous and don’t have names, it can be hard to find bugs and test them. This can make it challenging to isolate and fix errors in the code.
B. Inability to use statements and multiple expressions in lambda functions:
Lambda functions can only have one expression. They can’t include statements or more than one expression. This can make it hard for lambda functions to do complicated tasks.
C. Code examples of lambda function misuse:
Here are a few examples of lambda function misuse:
/code start /# Incorrect use of a lambda function with multiple expressions invalid = lambda x, y: x + y; print(invalid(2, 3)) # Output: 5 # Incorrect use of a lambda function with a statement invalid = lambda x: print(x); invalid('hello') # Output: None
Written by
Rahul LathReviewed by
Arpit Rankwar