yes
characters
team[0]
team[len(team) - 1]
team[-1]
x
no, strings are immutable
team[0:3] or team[:3]
team[-3:]
for i in range(len(team)): print(team[i])