Question: (Python ONLY) Write a program that prompts the user to enter a sequence of numbers until a -999 is entered. It will print the numbers
(Python ONLY) Write a program that prompts the user to enter a sequence of numbers until a -999 is entered. It will print the numbers the user entered, five numbers in a row, with a | before the first number and after the last number in each row. Use for-loops in your code. For example,
Enter a number (-999 to stop): 23 Enter a number (-999 to stop): 15 Enter a number (-999 to stop): 1 Enter a number (-999 to stop): 7 Enter a number (-999 to stop): 9 Enter a number (-999 to stop): 21 Enter a number (-999 to stop): 17 Enter a number (-999 to stop): 33 Enter a number (-999 to stop): -999 |23 15 1 7 9| |21 17 33|
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
