In this program, you’ll learn to find the largest among three numbers using if else and display it.
To understand this example, you should have the knowledge of the following Python programming topics:
In the program below, the three numbers are stored in num1, num2 and num3 respectively. We’ve used the if...elif...else ladder to find the largest among the three and display it.
Source Code
# 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 (num1 >= num2) and (num1 >= num3):
largest = num1
elif (num2 >= num1) and (num2 >= num3):
largest = num2
else:
largest = num3
print("The largest number is", largest)
Output
The largest number is 14.0
Note: To test the program, change the values of num1, num2 and num3.
Related posts:
Python Strings
Python staticmethod()
Machine Learning with Python for everyone - Mark E.Fenner
Python String isalpha()
Python dict()
Deep Learning with Python - Francois Cholletf
Python List insert()
Python Program to Display Powers of 2 Using Anonymous Function
Python Namespace and Scope
Natural Language Processing with Python - Steven Bird & Ewan Klein & Edward Loper
Python Dictionary copy()
Python tuple()
Python Program to Find Sum of Natural Numbers Using Recursion
Python Program to Check if a Number is Positive, Negative or 0
Python Program to Check if a Key is Already Present in a Dictionary
Python String isspace()
Python String zfill()
Python pow()
Python str()
Python Program to Count the Number of Each Vowel
Python List append()
Python List Comprehension
Python Program to Split a List Into Evenly Sized Chunks
Python eval()
Python Program to Return Multiple Values From a Function
Python Program to Swap Two Variables
Python range()
How to Get Started With Python?
Python List index()
Python Program to Check Armstrong Number
Python time Module
Python Iterators