Page 1 of 1

a python program helps a salesperson keep track of sales made per day. The user will be asked for the number of days to

Posted: Fri Jul 01, 2022 5:51 am
by answerhappygod
a python program helps a salesperson keep track of sales madeper day. The user will be asked for the number of days to track,then the sales for each of those days. When this is entered, theprogram will tell them the total and average sales as well as amessage based on comparing their last day's sales to the average.Both number of days and each sales amount must be error checked.There is no maximum number of days, but the minimum is 1.Suggestion: One good way to approach this question is to design itand get it working without the error-checking, then add theerror-checking, one section one at a time.