Curso_Intensivo_de_PYTHON/chapter_04/players.py
2023-06-02 17:22:53 +02:00

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())