Python Program to seek out the Greatest Value Among Three Numbers
Program mentioned in below, the three numbers are stored in num1, num2 and num3 respectively. We’ve used the if…elif…else ladder to seek out the Greatest among the three and display it.
Source Code
# Python program to seek out the Greatest number among the three input numbers
# change the values of num1, num2 and num3
# for a special result
num1 = 10
num2 = 14
num3 = 12
# uncomment following lines to require three numbers from user
#num1 = float(input(“Enter first number: “))
#num2 = float(input(“Enter second number: “))
#num3 = float(input(“Enter third number: “))
if (num1 >= num2) and (num1 >= num3):
largest = num1
elif (num2 >= num1) and (num2 >= num3):
largest = num2
else:
largest = num3
print(“The Greatest Value between”,num1,”,”,num2,”and”,num3,”is”,largest)
Output:
The Greatest Value between 10, 14 and 12 is 14.0
Note: to check the program, change the values of num1, num2 and num3.
Comments