Python Tutorials

Python Programs

How to find the Minimum of Two Numbers in Python


How to find the Minimum of Two Numbers in Python ?

Answer

To find the minimum of two numbers in Python, you can use the min function.



✐ Examples

1 Minimum of Two Numbers

In this example,

  1. We assign values to variables a and b.
  2. We use the min function to find the minimum of a and b.
  3. We print the minimum value.

Python Program

# Minimum of Two Numbers
a = 10
b = 15
min_val = min(a, b)
print(f'Minimum of {a} and {b} is: {min_val}')

Output

Minimum of 10 and 15 is: 10

Summary

In this tutorial, we learned How to find the Minimum of Two Numbers in Python language with well detailed examples.




More Python Comparison Operations Tutorials

  1. How to find the Maximum of Two Numbers in Python ?
  2. How to find the Minimum of Two Numbers in Python ?
  3. How to find the Maximum of Three Numbers in Python ?
  4. How to find the Minimum of Three Numbers in Python ?