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 trial

Python Object-Oriented Python Instant Objects Method Interactivity

Ingrid Matthews
Ingrid Matthews
1,465 Points

What does "couldn't find Student" mean?

Can anyone help me see what's wrong with my code? Many thanks

first_class.py
class Student:
    self.name = "Your Name"
    self.grade = int("Your 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):
        if self.grade >= 51:
            praise(self)

        elif self.grade <= 50:
            reassurance(self)

1 Answer

Steven Parker
Steven Parker
229,732 Points

That message just means that some error prevented the class definition from being accepted.

But for this task, the instructions say the method "should take an argument named grade". So it needs to be passed in to the method and not be a class field.

Also, you don't need to modify the definition of the "name" field. It is correct as provided in the original code.