Instagram
youtube
Facebook
Twitter

Find the Greatest Among Three Numbers in Python

A Python program to determine the largest number among three given integers.

Here’s a shorter version of the explanation in points:

  1. Purpose: The program finds the greatest number among three integers.
     
  2. Function: A function find_greatest_among is defined, taking three numbers as inputs.
     
  3. Logic: The function uses if-elif-else to check:
     
    • If the first number (Num1) is greater than or equal to both others, it returns Num1.
       
    • If not, it checks if the second number (Num2) is greater than or equal to the other two, returning Num2.
       
    • If neither condition is true, it returns the third number (Num3).
       
  4. Input & Output: The program takes three numbers as input and prints the greatest among them.

 

Program:

def find_greatest_among(Num1,Num2,Num3):
    if Num1 >= Num2 and Num1 >= Num3:
        return Num1
    elif Num2 >= Num1 and Num2 >= Num3:
        return Num2
    else:
        return Num3


Num1= int(input("Enter a Number First :"))
Num2= int(input("Enter a Number Second :"))
Num3= int(input("Enter a Number Third :"))


Output=find_greatest_among(Num1,Num2,Num3)
print(f"The greatest number among : {Output}")