Python Program to find the greatest number among three numbers


In this program, You will learn how to find the greatest number among the three numbers in Python.


10 20 30 => 30

40 30 20 => 40

Example: How to find the greatest number among three numbers in Python.

x = int(input("Enter first number:"))
y = int(input("Enter second number:"))
z = int(input("Enter third number:"))

if x > y and x > z:
    print("Greatest is:", x)
elif y > z:
    print("Greatest is:", y)
else:
    print("Greatest is:", z)

Output:

Enter first number:10
Enter second number:30
Enter third number:20
Greatest is: 30