top of page

Find the largest number among the three inputs in python


Find the largest number among the three inputs in python
Find the largest number among the three inputs in python
#Program by eboostup.com
#ankushdhingra
#Find the largest number among the three inputs in python
num1=int(input("Enter First number: "))
num2=int(input("Enter Second number: "))
num3=int(input("Enter Third number: "))

if num1>num2 and num1>num3:
    l=num1
elif num2>num1 and num2>num3:
    l=num2
else:
    l=num3
print("The Largest number is",l)
print("Powered By eboostup")
#ankushdhingra
Find the largest number among the three inputs in python
.zip
Download ZIP • 430B

#eboostup #eboostupindia #ankushdhingra

bottom of page