if statement with greater than in oython code example

Example 1: python see if a number is greater than other

# 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)

Example 2: if statement python

if (condition):
   result
    
else:
   result

Example 3: python if greater than and less than

if 10 < a < 20:
    whatever

Example 4: if statements equals same value python

if min(A, B, C, D) >= 2:
    print A, B, C, D