Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialGregory James
6,537 Pointssyntax error
I keep getting an syntax error on line 20. I don't understand why. here is my workspace https://w.trhou.se/zzg4a8xmh3
1 Answer
Tim Rach
Full Stack JavaScript Techdegree Student 25,127 PointsA couple of things here. Remember to close your brackets. On line 19 you forgot a closing bracket it should look like this
print("player {}: {}".format(player_num,player))
aswell on line 22 youยดve forgotten a closing bracket:
keeper = input("Please select a goal keeper from (1-{})".format(len(players)))
on line 26 is a unexpected indent of your print. remove it. then it should work..
Gregory James
6,537 PointsGregory James
6,537 PointsThank you very much. I made those changes and they worked!!