Accept three number from the user and display the largest number(python program)
Answers
Answered by
8
Answer:
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
Answered by
0
Answer:
what are you trying to ask plz..provide the picture of that question and is that python or pythagoras theory?
Similar questions