Write a Python program to accept four float numbers and print the smallest of those numbers.
Answers
Answered by
0
Answer:
lst = [ ]
for i in range(4):
x = float(input("Enter a number: "))
lst.append(x)
print('The smallest number = ', min(lst)
Hope it helps!!
Similar questions