how to get the highest number of an input in python code example
Example 1: how to get the highest number of an input in python
value1=input(int("Enter the Value 1"))
value2=input(int("Enter the Value 2"))
value3=input(int("Enter the Value 3"))
if (value1>value2) and (value1>value3):
largest=value1
elif (value2>value1) and (value2>value3):
largest=value2
else:
largest=value3
print("The largest value is",largest)
Example 2: how to check which number is higher in python
num1 = 10
num2 = 14
num3 = 12
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)