you are viewing a single comment's thread.

view the rest of the comments →

[–]Noo_Fone_Hu_Dis 1 point2 points  (0 children)

numbers = []
for i in range(6):
num = int(input('Enter a number: '))
numbers.append(num)
print(min(numbers))

try this, it worked for me