* ProblemWrite a solution to find the average selling price for each product. average_price should be rounded to 2 decimal places. If a product does not have any sold units, its average selling price is assumed to be 0.Return the result table in any order.Explanation: Average selling price = Total Price of Product / Number of products sold.Average selling price for product 1 = ((100 * 5) + (15 *..