Answer:
Answered below
Step-by-step explanation:
#Program is written in Python programming language
#Get the weight and price and store them in #variables.
parcel_weight = float(input('Enter weight of parcel in pounds: "))
rate_per_pound = float(input ('Enter shipping price per pound: "))
# Calculate the total price per pound
total_price = parcel_weight * rate_per_pound
#print invoice
print ("Your parcel weighs $parcel_weight pounds')
print ("The rate per pound is $rate_per_pound")
print("Total shipping cost is; ")
print ("%.2f" % total_price)