teams_short = [] teams = ["WOLVES", "OWLS", "PANTHERS", "BEARS", "DRAGONS"] for x in range(len(teams)): item = teams[x] teams_short.append(item[:3]) print(teams_short)