Question: Modify problem 3 so that the user does not need to know how many values will be entered. Create a python program with a new
Modify problem so that the user does not need to know how many values will be entered. Create a python program with a new solution that reads a list of values from the user until the user enters a sentinel value of At that point the average of the values entered should be displayed not including the sentinel value
This is how i did question
nvalues intinputHow many values do you want to enter?
total
counter
whilecounter nvalues:
num floatinputEnter a number:
total total num
counter counter
average total nvalues
printtotal: total
printaverage: average
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
