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 trialFiras Al-Mahrouqi
2,750 PointsI'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'.
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
Treehouse Moderator 68,441 PointsThe print statement returns None
which is then assigned to positive_message
.