Python Lambda Function
A lambda function is a small anonymous function.
A lambda function can take any number of arguments, but can only have one expression.
Syntax
The expression is executed and the result is returned:
Example
A lambda function that adds 10 to the number passed in as an argument, and print the result:
print(x(5))
Lambda functions can take any number of arguments:
Example
A lambda function that multiplies argument a with argument b and print the result:
print(x(5, 6))
Example
A lambda function that sums argument a, b, and c and print the result:
print(x(5, 6, 2))