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 trialBen Bassler
1,806 PointsI don't understand what is wrong with my code.
The goal of this task is it, to return a positive message about the student. But it always returns "Didn't find the name in the praise message. Be sure to use the instance attribute!".
class Student:
name = "Ben"
def praise(self):
return "You're doing a great job, {}!".format(self)
1 Answer
Zack Mowrer
Full Stack JavaScript Techdegree Graduate 62,350 PointsYou are very close. What you need to do is pass self.name
as the argument to the .format
method, not self
. self
refers to the current instance of the Student
object, while self.name
refers to its name
property, which contains the name that they are looking for in the message.
Ben Bassler
1,806 PointsBen Bassler
1,806 PointsAlright I got it now! Thank you for your help!