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 hasattr()
Python List extend()
Deep Learning in Python - LazyProgrammer
Python Deep Learning - Valentino Zocca & Gianmario Spacagna & Daniel Slater & Peter Roelants
Python Program to Solve Quadratic Equation
Python String title()
Python Program to Convert Kilometers to Miles
Python Keywords and Identifiers
Python print()
Python Program to Convert Decimal to Binary, Octal and Hexadecimal
Python Program to Randomly Select an Element From the List
Python String ljust()
Python Program to Get the File Name From the File Path
Python Dictionary clear()
Python Machine Learning - Sebastian Raschka
Python zip()
Python time Module
Python bytes()
Python Function Arguments
Python Program to Count the Number of Occurrence of a Character in String
Python Program to Convert Celsius To Fahrenheit
Python Matrices and NumPy Arrays
Python Namespace and Scope
Python round()
Python Inheritance
Python Deep Learning Cookbook - Indra den Bakker
Python Type Conversion and Type Casting
Python Dictionary update()
Python Program to Trim Whitespace From a String
Python Errors and Built-in Exceptions
Python Program to Find LCM
Applied Text Analysis with Python - Benjamin Benfort & Rebecca Bibro & Tony Ojeda