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 Your first method

I'm not sure what I got wrong here?

I keep getting this error 'Oh no! You forgot the self argument in your praise method' but I don't see what's wrong with my code?

If I don't store the print statement in a variable and just return the message right away it works, but I would like to know what the issue is with this 'solution'.

first_class.py
class Student:
    name = "Firas"

    def praise(self):
        positive_message = print(f"You're doing a great job, {self.name}")
        return positive_message

1 Answer

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

The print statement returns None which is then assigned to positive_message.