Answer:
numbers = []
count = 0
while True:
number = int(input("Enter a number: "))
if number < 0:
break
else:
numbers.append(number)
count += 1
min_number = min(numbers)
print(str(min_number) + " was the smallest among " + str(count) + " entered numbers.")
Explanation:
Initialize an empty array, to hold the entered numbers, and count as 0
Create a while loop that iterates until a specific condition is met
Inside the loop, ask the user to enter the numbers. When the user enters a negative number terminate the loop. Otherwise, add the entered number to the numbers array and increment the count by 1.
When the loop is done, find the smallest of the number in the numbers array using min method and assign it to the min_number.
Print the min_number and count