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 trialAnthony Dibaya
10,194 PointsMy code won't run correctly.
After asking if user would like to add players to the list it prints the number of players in the list which is 0. Then asks to pick a goalkeeper than says
Traceback (most recent call last):
File "team.py", line 34, in <module>
print("The keeper will be {}.".format(player[keeper-1]))
NameError: name 'player' is not defined
Any suggestions?
1 Answer
KRIS NIKOLAISEN
54,971 PointsA little difficult to tell without seeing the rest of your code. Should player
be players
here?
print("The keeper will be {}.".format(player[keeper-1]))