The lambda function is an anonymous function. It can have any number of arguments but it can only have one expression.
Syntax lambda arguments : expression
In this article, we will learn how to find the smaller value between two elements using the Lambda function.
Example:
Input : 2 5
Output : 2
Input : 7 5
Output : 5
Method 1: Using lambda and min() method
Python3
get_min = lambda a, b : min (a,b)
print (get_min( 5 , 8 ))
|
Output:
5
Explanation: The a,b are passed to the lambda function and min() method is used as an expression to return the minimum element.
Python3
get_min = lambda a, b : a if a < b else b
print (get_min( 5 , 8 ))
|
Output:
5
Explanation: a, b are the arguments and ternary operator is used for comparing two elements
Method 3 :Using Tuple and lambda
Python3
a = 5
b = 8
print (( lambda : b, lambda : a)[a < b]())
|
Output:
5
Explanation:
Two lambda functions will be stored in a tuple such that 1st element is b and 2nd element will be b. if [a<b] is true it return 1 and element with index 1 will print else if [a<b] is false it return 0, so element with index 0 will print.
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
28 Nov, 2021
Like Article
Save Article