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 trialElizabeth McInerney
3,175 PointsI don't understand the question
Here is the question:
"Add a score method to Game that takes a player argument that'll 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)."
I don't understand: "takes a player argument that'll be either 1 or 2". I think this means that we need to tell the program that we are dealing either with player number 1 or player number 2, but I am not sure.
I also don't understand: " You'll need to adjust the index (i.e. player = 1 means self.current_score[0] needs to increase)."
I have yet to change the code, so what you see below is the starting point.
class Game:
def __init__(self):
self.current_score = [0, 0]
1 Answer
Elizabeth McInerney
3,175 PointsI figured it out. You just need to test if you have player 1 or player 2 when you are inside the method score, and then do self.current_score[0 or 1] += 1
Kayden Enright
3,494 PointsKayden Enright
3,494 PointsGive it a bucket.