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 trial

Python Object-Oriented Python (retired) Inheritance Score Method

Add a score method to Game that takes a player argument. The player argument will be either 1 or 2. Increase that play

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).

game.py
class Game:

    def __init__(self):
        self.current_score = [0, 0]

    def score(player):
        self.current_score +=1

1 Answer

You're pretty close! All you have to do is take a queue from the Challenge task description where it says player = 1 means self.current_score[0] needs to increase and make sure you pass in the self argument for score() as well. That leaves you with something that looks a bit like this

def score(self, player):
        self.current_score[player-1] += 1        # we have to subtract 1 from the player value 
                                                 # since indices are zero-based in Python.

and you should be good :)

thank you so much, it worked. i was almost close but i didn't take a second look at the question.

thanks i appreciate your kind response

EMEKA OKIKE - glad to be of service :)