podium(finishers) that takes an ordered list of runner names and returns the first three paired with 'gold', 'silver', 'bronze' as tuples. If fewer than three finished, pair only as many as exist — a comprehension over zip handles this naturally.podium(['Asha', 'Ben'])
[('Asha', 'gold'), ('Ben', 'silver')]zip stops at the shorter sequence.
Medals list: ['gold', 'silver', 'bronze'].
zip truncates to the shorter iterable automatically.