Welcome to Westonci.ca, the place where your questions are answered by a community of knowledgeable contributors. Experience the ease of finding accurate answers to your questions from a knowledgeable community of professionals. Get immediate and reliable solutions to your questions from a community of experienced professionals on our platform.

Python projectstem 3.6 code practice
Write a program to input 6 numbers. After each number is input, print the smallest of the numbers entered so far.

Sample Run
Enter a number: 9
Smallest: 9
Enter a number: 4
Smallest: 4
Enter a number: 10
Smallest: 4
Enter a number: 5
Smallest: 4
Enter a number: 3
Smallest: 3
Enter a number: 6
Smallest: 3