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 trialConrad Landicho
3,312 Pointsworking on index
Hi everyone, I'm trying to solve this Code Challenge that goes like this:
Add a score method to Game that takes a player argument. The player argument will be either 1 or 2. Increase that player's value in self.current_score by 1. You'll need to adjust the index (i.e. player = 1 means self.current_score[0] needs to increase).
However, I'm getting this error, which seems to confuse me.
Bummer! Score didn't increase correctly. Expected [0, 1], got [1, 1].
Can somebody please tell me what I'm doing wrong?
Thanks in advance for your help. --Conrad
class Game:
def __init__(self):
self.current_score = [0, 0]
def score(self,player):
self.player = player
PLAYER_NUM = [0,1]
for player in PLAYER_NUM:
self.current_score[player] +=1
return self.current_score
2 Answers
james south
Front End Web Development Techdegree Graduate 33,271 Pointsi think you can do this in 2 lines (if i'm understanding the problem correctly). take out the loop as a start.
Conrad Landicho
3,312 PointsI tried it, but didn't work. I also changed the score method definition, and here's the new code:
===========================
class Game: def init(self): self.current_score = [0, 0]
def score(self,player = [0,1] ): self.player = player self.current_score[player] +=1 return self.current_score
============================ But I'm gettting this new error:
Bummer! Did you adjust the player number?