5 lines
172 B
Python
5 lines
172 B
Python
players = ['charles', 'martina', 'michael', 'florence', 'eli']
|
|
|
|
print("Here are the first three players on my team:")
|
|
for player in players[:3]:
|
|
print(player.title())
|