Advertisement
kealeydodds

Untitled

Sep 15th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 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[0:3])
  7.  
  8.  
  9. print(teams)
  10. print(teams_short)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement