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 Program to Check If Two Strings are Anagram
Deep Learning with Python - Francois Cholletf
Python String ljust()
Python String partition()
Python break and continue
Python Program to Find Armstrong Number in an Interval
Python Program to Merge Two Dictionaries
Python List copy()
Python Modules
Python print()
Python bin()
Python Program to Find the Sum of Natural Numbers
Building Machine Learning Systems with Python - Willi Richert & Luis Pedro Coelho
Python callable()
Python type()
Python Keywords and Identifiers
APIs in Node.js vs Python - A Comparison
Python divmod()
Python frozenset()
Python sum()
Python Program to Find Sum of Natural Numbers Using Recursion
Python Operator Overloading
Introduction to Scientific Programming with Python - Joakim Sundnes
Python Dictionary update()
Python Type Conversion and Type Casting
Python exec()
Python String startswith()
Python String index()
Python String rjust()
Python Machine Learning Second Edition - Sebastian Raschka & Vahid Mirjalili
Python Program to Safely Create a Nested Directory
Python id()