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 trialIngrid Matthews
1,465 Pointsattributes of class
With the attached code, I get an error message "couldn't find 'Student'". Previously I had the grade = self.grade line in my feedback method, which returned an error message "Student has no attribute 'grade"". I've been trying endless permutations of this and can't get it right.... grateful for any help.
class Student:
name = "Your Name"
grade = self.grade
def praise(self):
return "You inspire me, {}".format(self.name)
def reassurance(self):
return "Chin up, {}. You'll get it next time!".format(self.name)
def feedback(self, grade):
if int(grade) > 50:
praise(self)
elif int(grade) <= 50:
reassurance(self)
2 Answers
Mark Sebeck
Treehouse Moderator 37,799 PointsYou were close when you had it in feedback but have it backwards. It needs to be self.grade = grade. grade is what is being passed in and you want to set it equal to self.grade.
Also you want to return the values from praise() and reassurance().
And will need self. when you call the praise() and reassurance() methods
Ingrid Matthews
1,465 PointsThanks a lot. Does this mean there should be a line in the feedback function saying "self.grade = grade.grade"? Is there a video that explains this further?
Is it not already part of the praise and reassurance functions to return their values? Again, thanks..
Mark Sebeck
Treehouse Moderator 37,799 PointsYes praise() and reassurance() do return the value but you need to return the value they return from feedback(). Otherwise when you called feedback() you would not get any output.
I don't think you need self.grade = grade. You would only if you needed to set the class attribute to the grade passed in. But since you only use grade in the method feedback() you don't need to. I just noticed you had it backwards and didn't really look into if it was needed.
grade is what is passed into the method. self.grade is a class attribute that could be used as part of the class. Hope this helps.
unknown member
Courses Plus Student 18,949 Pointsclass Student:
name = "Your Name"
def praise(self):
return "You inspire me, {}".format(self.name)
def reassurance(self):
return "Chin up, {}. You'll get it next time!".format(self.name)
def feedback(self, grade):
if grade > 50:
return self.praise()
else:
return self.reassurance()
Ingrid Matthews
1,465 PointsMany thanks
unknown member
Courses Plus Student 18,949 PointsCode snipet above is a little too short to explain the whole thing. You should create an object using student class (it is a blueprint for an actual object that you'll create) and try to play a little with the code, create more methods in the class which can do just anything, it doesn't matter. Afterwards create and object like:
Ingrid = Student()
Ingrid.praise()
Ingrid.reassurance()
Ingrid.feedback()
Ingrid.any_method()
That "self" thing in your methods represents your object (in your case Ingrid). Your objects can have properties (in the challenge it was ' name = "Your Name" ') and methods, you access them by dot (.) notation, you make your objects do things or accommodate values about itselves. Later in the course you will encounter init method and maybe after that it will make a little more sense.
Jamar Slade
2,480 PointsJamar Slade
2,480 PointsHi Ingrid,
Can you post the question?