Açıklama Yok

players.py 172B

123456
  1. players = ['charles', 'martina', 'michael', 'florence', 'eli']
  2. print("Here are the first three players on my team:")
  3. for player in players[:3]:
  4. print(player.title())