What does the list comprehension in the following code example do?
sales = [84.65, 22.37, 58.92, 41.59]shipping_pct = .05results = [s * shipping_pct for s in sales if s < 50.00]