Question: Looping Question: Modity the python source code below so that a user can enter multiple weights of packages until the user has no more packages

Looping Question: Modity the python source code below so that a user can enter multiple weights of packages until the user has no more packages to input. The program should print the charges for each package entered. Before the program ends, it should print the total charges of all packages. Weight_Limit1 = 2 Cost_per_pound1 = 1.5 Weight Limit2 = 6 Cost_per_pound2 = 3 Weight_Limit3 = 10 Cost_per_pound3 = 4 Cost per pound4 = 4.75 # This is where input the weight for packages weight = float(input("Enter the weight of the package: ")) # Analysis of input if weight Weight_Limit1: rate_per_pound = Cost_per_pound1 elif weight
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
