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 trialBryan Manhollan
Courses Plus Student 10,096 PointsNot sure what I'm missing...
This is the first one I've been stuck on. I'm sure I'm missing something dumb. Can anyone help?
class Game:
def __init__(self):
self.current_score = [0, 0]
def score(self):
self.player = player
if player == 1:
self.current_score[0] += 1
if player == 2:
self.current_score[1] += 1
else:
continue
class Game:
def __init__(self):
self.current_score = [0, 0]
def score(self):
self.player = player
if player == 1:
self.current_score[0] += 1
if player == 2:
self.current_score[1] += 1
else:
continue
1 Answer
Hanley Chan
27,771 PointsHi,
Your function should be taking in a player argument that will either contain 1 or 2.
def score(self, player):
if player == 1:
self.current_score[0] += 1
if player == 2:
self.current_score[1] += 1
Bryan Manhollan
Courses Plus Student 10,096 PointsI knew I was missing something dumb. Thanks!
Bryan Manhollan
Courses Plus Student 10,096 PointsBryan Manhollan
Courses Plus Student 10,096 PointsOnly error I'm getting is Try Again.