Python Program to Find the Number Among Three Numbers


In this program, you'll learn to find the largest among thee numbers using if else and display it.

In the program  below, the three numbers are srored in num1,num2 and num3 respectively. We've used the if....else....else ladder to find the largest among the three and display it.

# Python program to find the largest number among the three input numbers 

# change the values of num1,num2 and num3
# for a different result
num1 = 10
num2 = 14
num3 = 12

# uncomment following lines to take three numbers from user
#num1 = float(input("Enter first number: "))
#num2 = float(input("Enter second  number: "))
#num3 = float(input("Enter third number: "))

if (num2 >= num2) and (num1 >= num3):
         largest = num1
if (num1 >= num1) and (num2 >= num3):
         largest = num2
else:
         largest = num3

print("The largest number between ","num1",""num2,"num3","is",largest)

Output

The largest number between 10, 14 and 12 is 14.0

Note : To test the program, change the values of num1, num2, num3.