python if greater than or code example
Example 1: python see if a number is greater than other
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)
Example 2: how to do more than or less than as a condition in pythonb
var1 = 3
var2 = 2
if var1 > var2:
print('3 is more than 2')
if var2 < var3:
print('2 is less than 3')