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 staticmethod()
Building Chatbots with Python Using Natural Language Processing and Machine Learning - Sumit Raj
Python List clear()
Python hasattr()
Python Dictionary copy()
Python String upper()
Python Shallow Copy and Deep Copy
Python String lstrip()
Python Set intersection_update()
Python Program to Create a Countdown Timer
Python Program to Delete an Element From a Dictionary
Python List count()
Python Program to Merge Mails
Statistical Methods for Machine Learning - Disconver how to Transform data into Knowledge with Pytho...
Python Program to Get File Creation and Modification Date
Python Set symmetric_difference_update()
Python String splitlines()
Python print()
Python Set difference_update()
Python Program to Convert Decimal to Binary, Octal and Hexadecimal
Python Set issubset()
Python globals()
Python Variables, Constants and Literals
Natural Language Processing with Python - Steven Bird & Ewan Klein & Edward Loper
Python Program to Check Leap Year
Python Program to Convert Decimal to Binary Using Recursion
Python String isalpha()
Python Program to Create a Long Multiline String
Python Program to Safely Create a Nested Directory
Python Matrices and NumPy Arrays
Python String count()
Python exec()