apply_discount(prices, pct) that takes a dict mapping product names to prices and a discount percentage pct (e.g. 10 for 10%). Return a new dict with the same keys, each value reduced by pct percent and rounded to 2 decimal places.apply_discount({'pen': 100.0, 'bag': 50.0}, 10){'pen': 90.0, 'bag': 45.0}Each price reduced by 10%.
Iterate with `.items()`, build a new dict: `{k: round(v * (1 - pct / 100), 2) for k, v in prices.items()}`.