This week's assignment involves writing a Python program to compute the weekly pay for a paper carrier. Your program sho
Posted: Tue Jul 12, 2022 8:15 am
This week's assignment involves writing a Python program to compute the weekly pay for a paper carrier. Your program should prompt the user for the following numeric values: the number of papers on the route • the number of days the paper is delivered per week • the amount of tips received for the week Your program should define (not prompt) for the following: • the cost of each newspaper, • a percentage rate for his/her commission. (the paper carrier gets a percentage of the cost of each newspaper) The total number of papers for week is number of papers times number of days. The weekly salary is total number of papers for week times cost of each newspaper times his percentage rate. The total pay should be computed as his weekly salary plus his tips. Your program should display output at the end of the program for the following: the total number of papers delivered for the week, . the weekly salary. the tips for the week, the total pay for the week. .