You are given two variables , already defined, named total_weight , containing the weight of a shipment, and weight_of_box , containing the weight of the box in which a product is shipped. Write an expression that calculates the net weight of the product.

You are given two variables , already defined, named total_weight , containing the weight of a shipment, and weight_of_box , containing the weight of the box in which a product is shipped. Write an expression that calculates the net weight of the product.



Answer: total_weight - weight_of_box


Learn More :