Python Lambda with underscore as an argument
Last Updated :
22 Jun, 2020
Improve
In Python, we use the lambda keyword to declare an anonymous function. Lambda function behaves in the same way as regular functions behave that are declared using the 'def' keyword. The following are some of the characteristics of Python lambda functions:
Python3 1==
Output:
Python3 1==
Output :
- A lambda function can take more than one number of arguments, but they contain only a single expression.
- Lambda functions used to return function objects.
- Syntactically, lambda functions are restricted to only one single expression.
Creating a Lambda Function
Lambda functions can be created using thelambda
keyword. We use the given syntax to declare a lambda function:
lambda argument(s) : expressionExample:
remainder = lambda num: num % 2
print(remainder(5))
1
Python Lambda with underscore
The '_' is the variable name. This variable name is usually a name for an ignored variable. Example:l = lambda _: True
l(1)
TrueThis function can be used when we want to get a specific output for every input.