Answers for "greatest of three numbers in python"

2

program to find the largest of three numbers in python

# Python program to find the largest number among the three input numbers
# 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)
Posted by: Guest on July-24-2020
0

greatest of three numbers in python

a=int(input())
b=int(input())
c=int(input())
#((a>b)?(a>c?a:c):(b>c?b:c))
if(a>b):
    if(a>c):
        print("a")
    else:
        print("c")
else:
    if(b>c):
        print("b")
    else:
        print("c")
Posted by: Guest on March-04-2021
0

how to find greatest number in python

Method 1 : Sort the list in ascending order and print the last element in the list.

filter_none
edit
play_arrow

brightness_4
# Python program to find largest 
# number in a list 
  
# list of numbers 
list1 = [10, 20, 4, 45, 99] 
  
# sorting the list 
list1.sort() 
  
# printing the last element 
print("Largest element is:", list1[-1]) 
Output:

Largest element is: 99
Posted by: Guest on September-06-2020

Code answers related to "greatest of three numbers in python"

Python Answers by Framework

Browse Popular Code Answers by Language