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 trialPrem Yadav
7,346 PointsNot able to solve this problem..
Hi there Actually I'm trying to solve this problem but not able to solve. I'm getting where i'm doing mistake. Please help to find out mistake.
class Student:
name = "Your Name"
grade = 60
me = Student()
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 Student.feedback(self.grade) > 50:
return me.praise()
return me.reassurance()
1 Answer
matthew manning
22,451 Points'''python
correct answer
class 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()
if grade < 50:
return self.reassurance()
your errors: class Student: name = "Your Name" grade = 60
me = Student() # needs to be deleted cant create an instance of a class inside a definition of one
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 Student.feedback(self.grade) > 50: # just need to check the grade variable >>> if grade > 50:
return me.praise() # should be self.praise() self is the variable for the instance which has the method
return me.reassurance() # you need another if operator to check the second condition
'''
hope help that helps bud
regards kuza