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 Tuple
Python String rjust()
Python reversed()
Python Recursion
Python Directory and Files Management
Python __import__()
Python bytearray()
Machine Learning Applications Using Python - Cases studies form Healthcare, Retail, and Finance - Pu...
Python classmethod()
Machine Learning Mastery with Python - Understand your data, create accurate models and work project...
Python List clear()
Python Machine Learning Eqution Reference - Sebastian Raschka
Python String isdigit()
Python String format_map()
Python Program to Access Index of a List Using for Loop
Python Program to Find Hash of File
Python String splitlines()
Python String partition()
Python Dictionary
Python Program to Check Leap Year
Python id()
Python Program to Check Armstrong Number
Python Deep Learning Cookbook - Indra den Bakker
Python Exception Handling Using try, except and finally statement
Python Program to Trim Whitespace From a String
Python String isalpha()
Python Program to Check the File Size
Python sleep()
Python vars()
Python String rfind()
Python len()
Python abs()