Question: Problem Description: In this program we are going to explore a list or an array of integers using Python. Your program should read a set

Problem Description: In this program we are going to explore a list or an array of integers using Python. Your program should read a set of integers from the user and store them in a list. Read numbers from the user until the user enters 0 to quit. Then store them in a list. Your program should them compute the sum of all the numbers in the list and output to the user. You will use lists and functions to accomplish this task. You program should also give an error message and exit gracefully if the user enters anything other than a number.

Inputs: Your Python program should accept a set of integers (only numbers) until the user enters 0 to quit.

Output: Your program should print the sum of all the integers that you have read and stored in a list. Examples of output:

Please enter a number: 4 Please enter a number: 5 Please enter a number: 6 Please enter a number: 7 Please enter a number: 8 Please enter a number: 0 4 + 5 + 6 + 7 + 8 = 30

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!