Final answer:
The question is asking for a Python script that uses a while loop to collect numeric input between 1 and 100 until -1 is entered, then prints the list with a for loop.
Step-by-step explanation:
Python Script to Collect Numeric Input
The student is asking for a small script that uses a while loop to prompt for numeric input between 1 and 100. The loop should continue prompting the user until a sentinel value of -1 is entered. Afterward, the script should print the collected numbers using a for loop. Below is an example script written in Python that accomplishes this task:
# Python script to prompt for numeric input and print the list
numbers = []
while True:
user_input = int(input("Enter a number between 1 and 100 or -1 to exit: "))
if user_input == -1:
break
elif 1 <= user_input <= 100:
numbers.append(user_input)
else:
print("Please enter a number within the specified range.")
for number in numbers:
print(number)
The script starts by creating an empty list to store the numbers. It then enters an infinite while loop, which prompts the user for input and assesses the input's value. If the input is within the specified range, it's added to the list. If the user enters -1, the loop is terminated, and the script proceeds to print the numbers in the list using a for loop.