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 a String Is a Number (Float)
Python Program to Convert String to Datetime
Python Program to Copy a File
Python List extend()
Python String rfind()
Python String split()
Python Dictionary setdefault()
Python Machine Learning Eqution Reference - Sebastian Raschka
Python Dictionary
Python String join()
Python help()
Python vars()
Python Multiple Inheritance
Python Program to Safely Create a Nested Directory
Python 3 for Absolute Beginners - Tim Hall & J.P Stacey
Python Program to Convert Celsius To Fahrenheit
Python Program to Get File Creation and Modification Date
Python Dictionary copy()
Python format()
Python Program to Check if a Number is Odd or Even
Python Dictionary update()
Python bin()
Python String rpartition()
Python Program to Display Calendar
Python Program to Iterate Through Two Lists in Parallel
Python timestamp to datetime and vice-versa
Python Sets
Python String lower()
Python Program to Find All File with .txt Extension Present Inside a Directory
Python Program to Remove Punctuations From a String
Python bytearray()
Python Program to Return Multiple Values From a Function