Question: List athlete_positions contains four athlete names read from input. Complete the for loop using the enumerate() function to output each athlete's order on the roster
List athlete_positions contains four athlete names read from input. Complete the for loop using the enumerate() function to output each athlete's order on the roster followed by the athlete's name. athlete_positions = [input(), input(), input(), input()] for (indx, athlete) ''' Your code goes here ''': print(f'#{indx + 1}: {athlete}')
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
