write indented and documented program in python to enter three numbers and print the smallest among them
Answers
Answered by
1
Answer:
Support Django Central. Bryan. May 19, 2019 at 8:20 am. num1 = float(input(“Enter first number: “)) num2 = float(input(“Enter second number: “)) num3 = float(input(“Enter third number: “)) Ikram Ullah. December 28, 2020 at 7:56 am. if (num1<num2) and (num1<num3): smallest=num1. elif (num2<num1) and (num2<num3):
Similar questions