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

Suleiman Abdurozikov
Suleiman Abdurozikov
2,943 Points

need help!!

plese help

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


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

2 Answers

I remember this one being hard for me. I'm going to go through it again and see what I get.

This one worked.

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

  def score(self, player):
    if player == 1:   # player will be either the number 1 or number 2
        self.current_score[0] += 1 # self.current_score[0] is the score for player 1
    elif player == 2: # Check if player value is 2 
        self.current_score[1] += 1 # self.current_score[1] is the score for player 2