Answer:
#Initialise a tuple
team_names = ('Rockets','Raptors','Warriors','Celtics')
print(team_names[0])
print(team_names[1])
print(team_names[2])
print(team_names[3])
Explanation:
The Python code illustrates or printed out the tuple team names at the end of a season.
The code displayed is a function that will display these teams as an output from the program.