Python Program to Find the Largest Among Three Numbers

To understand this example, you should have the knowledge of the following Python programming topics:


In the program below, the three numbers are stored in num1, num2 and num3 respectively. We've used the if...elif...else ladder to find the largest among the three and display it.

Source Code

Output

The largest number is 14.0

Note: To test the program, change the values of num1, num2 and num3.