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 trialbeven nyamande
9,575 Pointsinstance methods
can anyone point to me whr am getting wrong
i have tried the code below
def score(player):
for key in zip(player):
self.current_score[key]+=1
class Game:
def __init__(self):
self.current_score = [0, 0]
def score(self,**kwargs):
for value in kwargs.values():
self.current_score[value] += 1
1 Answer
Stephen Link
3,685 PointsHave another look at this part of the problem requirement: You'll need to adjust the index (i.e. player = 1 means self.current_score[0] needs to increase). The way you're using "value" right now will result in player = 1 causing self.current_score[1] to increase.