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 trialChristian Tielking
678 PointsGameScore is not producing the right output
I'm confused, it told me to use str to return the player 1 score and player 2 score. I tried it just like the directions show and how we did it in the class. can someone please scan the code and see what the bug is?
from game import Game
class GameScore(Game):
def __str__(self):
return "Player 1:{}; Player 2:{}".format(self.score, self.score)
1 Answer
james south
Front End Web Development Techdegree Graduate 33,271 Pointsyou are trying to format with self.score twice. it tells you that self.score is a tuple with both players scores as its elements. you can slice into a tuple just like a list or string, with the [].