fears4806 fears4806 22-04-2024 Computers and Technology Answered 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]