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 trialAdam Betker
2,122 PointsStrings appear to match exactly yet I fail __str__Challenge.
The message I get when trying to complete this is Bummer! Expected "Player 1: 5; Player 2: 2". Got "Player 1: 5; Player 2: 2". To me, those strings look the same. It's looks like Player 2 has the wrong score. What should I do here? Thank you!
from game import Game
class GameScore(Game):
def __str__(self):
return 'Player 1: {}; Player 2: {}'.format(*self.score)
1 Answer
Chris Howell
Python Web Development Techdegree Graduate 49,702 PointsYou have an extra space in the string being returned from your str method. ;-)
Adam Betker
2,122 PointsAdam Betker
2,122 PointsChris, I want to be a developer sooo bad but I am the worlds worst typist. Thank you for responding, I appreciate it.
ADAM
Chris Howell
Python Web Development Techdegree Graduate 49,702 PointsChris Howell
Python Web Development Techdegree Graduate 49,702 PointsDont beat yourself up about it.
I am a pretty decent typist and speller, I write typos everyday when coding. But eventually it will all start looking familiar to where when you read code. You will just see some errors popping out at you.
"Oops that doesn't go there, what are you doing fingers this is Python not PHP." Haha.