Fareehausman00

Untitled

Sep 21st, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. teams = ["WOLVES", "OWLS", "PANTHERS", "BEARS", "DRAGONS"]
  2.  
  3. teams_short = []
  4.  
  5. for team in teams:
  6. teams_short.append(team[:3])
  7.  
  8. print teams_short
Advertisement
Add Comment
Please, Sign In to add comment