VOOZH about

URL: https://www.geeksforgeeks.org/python/python-lambda-function-to-find-the-smaller-value-between-two-elements/

⇱ Python - Lambda function to find the smaller value between two elements - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Python - Lambda function to find the smaller value between two elements

Last Updated : 23 Jul, 2025

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

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.

Method 2: Using lambda and ternary operator

Output:

5

Explanation: a, b are the arguments and ternary operator is used for comparing two elements

Method 3 :Using Tuple and lambda 

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.

Comment
Article Tags: