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 trialPavlo Vasylyshyn
4,641 PointsHow come my solution does not pass validation?
It works in my workspace. https://teamtreehouse.com/workspaces/29745632# test_1.py
Thanks, Pavlo
class Student:
name = "Pavlo"
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):
self.grade = grade
if self.grade > 50:
return me.praise()
return me.reassurance()
me = Student()
print(me.feedback(55))
3 Answers
Chris Freeman
Treehouse Moderator 68,441 PointsYou are very close! In the feedback
method, the current instance is referred to as self
not "me". Replace "me" with self
and it will pass the challenge!!
Pavlo Vasylyshyn
4,641 PointsCorrected to "self" and it worked. Odd though, in Workspaces both "me" and "self" within "feedback" method reference to a same memory location. Maybe it's Python version related as well.
============================
def feedback(self, grade):
print(me)
print(self)
self.grade = grade
if self.grade > 50:
return me.praise()
return me.reassurance()
============================
Thank you Chris!
Chris Freeman
Treehouse Moderator 68,441 PointsYou are correct that me
exists because you have created it outside of the function with a specific value. So, feedback
will provide the correct answer as long as feedback is only called on the me
instance of Student
.
The challenge checker will create its own independent instances during testing that do will not pass because of they will be different from me
.
slacker = Student()
print(slacker.feedback(17))
# fails with praise for 'me' instead of slacker
Pavlo Vasylyshyn
4,641 PointsGot it. Thanks Chris.