print a specific item in a list prints the wholw liat code example
Example 1: print all elements in list python
# using for loop
scores = [11, 12, 13, 14, 15, 16]
for score in scores:
print(score)
Example 2: print all objects in list python
for p in myList:
print p