Computer Science, asked by vssdps, 7 months ago

write a python program to print the larges of three no❓❔❓​

Answers

Answered by simran7539
1

Answer:

Source Code:

  • # 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.
Answered by Anonymous
2

Answer:

Source Code:

Source Code:# take three numbers from user. num1 = float(input("Enter first number: ")) num2 = float(input("Enter second number: ")) num3 = float(input("Enter third number: "))

Explanation:

Please follow me and mark me as brainlist...

Similar questions