Answers for "how to get the highest number of an input in python"

0

how to get the highest number of an input in python

#program to get the highest number of an input

#take input from the user
value1=input(int("Enter the Value 1"))
value2=input(int("Enter the Value 2"))
value3=input(int("Enter the Value 3"))

#now compare the values
if (value1>value2) and (value1>value3):
  largest=value1
elif (value2>value1) and (value2>value3):
  largest=value2
else:
  largest=value3

#print the largest value
print("The largest value is",largest)
Posted by: Guest on May-31-2021
0

how to check which number is higher in python

# 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)
Posted by: Guest on April-18-2020

Code answers related to "how to get the highest number of an input in python"

Python Answers by Framework

Browse Popular Code Answers by Language