[Solved] Tournament Program [closed]

The error you have comes up in your method of printing out the results: for i in range(len(teams)): print(team[i],team[i+1]) First of all, you have team instead of teams in the print statement, which is actually the string where you were storing user input, and should be ‘-1′ by the time you’re printing scores. You’re getting … Read more