Answers for "python program to find largest of 5 numbers"

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
1

Largest number python

# This program will find out the greater number in the arguments

def larger_number(x, y):
    if x > y:
        print(x, "is greater")
    else:
        print(y, 'is greater')

larger_number(12, 31)
Posted by: Guest on April-09-2021
0

how to write program in python to get the largest nuber

def max_num_in_list( list ):
    max = list[ 0 ]
    for a in list:
        if a > max:
            max = a
    return max
print(max_num_in_list([1, 2, -8, 0]))
Posted by: Guest on January-27-2021

Code answers related to "python program to find largest of 5 numbers"

Python Answers by Framework

Browse Popular Code Answers by Language