Computer Science, asked by shivanishivu4876, 9 months ago

Write a Python program to accept four float numbers and print the smallest of those numbers.

Answers

Answered by gaganadithyareddy9
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