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

methods

i cant figure out whats wrong here

first_class.py
class Student:
    name = "Olebogeng"

    def praise(self):
    return "You are doing a great job, {}!".format(self.name)

Hi. You are misusing the .format method. Try the following instead.

return "You are doing a great job, {0}!".format(self.name)

OR

return f"You are doing a great job, {self.name}!"

You can read from this page to understand more about the new way of formatting strings in Python3. https://realpython.com/python-f-strings/

2 Answers

Your return statement needs to be indented so that it is included in the praise method

Thank you sooo much for your help

Always a pleasure to help..