0
18kviews
Write a Python Program to Find the Largest Among Three Numbers
1 Answer
written 2.9 years ago by |
Explanation
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.
And Logical Operator is used to check if both the conditions are satisfied Returns True if both statements are …