There's an easy way to loop through all the elements of list by using a for loop.
To loop through the elements in the scores list, we write for, a variable like score, the word in, and the list scores.
The loop will run for as many elements as there are in the list. We'll see four elements in the console here by coding print(score).
>>> scores = [17,22,34,13]
>>> for score in scores:
... print(score)
...
17
22
34
13