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 __import__()
Python Program to Check If Two Strings are Anagram
Python Program Read a File Line by Line Into a List
How to Get Started With Python?
Python memoryview()
Python sum()
Python Program to Get File Creation and Modification Date
Statistical Methods for Machine Learning - Disconver how to Transform data into Knowledge with Pytho...
Python Program to Create a Long Multiline String
Python Multiple Inheritance
Java Program to Implement the Program Used in grep/egrep/fgrep
Python Dictionary pop()
Python String startswith()
Python Program to Check Prime Number
Python String split()
Python Sets
Python String istitle()
Python Program to Print Colored Text to the Terminal
Python Custom Exceptions
Python break and continue
Python for Programmers with introductory AI case studies - Paul Deitel & Harvey Deitel
Python Program to Find Sum of Natural Numbers Using Recursion
Python setattr()
Python sorted()
Python Program to Check if a Number is Positive, Negative or 0
Python id()
Python Dictionary setdefault()
Python Program to Get the Last Element of the List
Python Program to Print all Prime Numbers in an Interval
Python Program to Display Calendar
Deep Learning with Applications Using Python - Navin Kumar Manaswi
Python Generators