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 Challenge

Nicole A
Nicole A
1,790 Points

Python OOP vocabulary

Could someone please tell me what I am doing wrong here? I keep getting the error message "Treehouse not defined" . Treehouse is a class I have created and I am not sure why it is not recognised as that. I have followed the given instructions to write the code below.

class Treehouse:
    product = 'coding courses'

    def __init__(self, name):
        self.name = name
    def learn(self, name):
        return f'{self.name} is learning to code!'
    my_treehouse =Treehouse()
print(my_treehouse.learn(Nicole))
Steven Parker
Steven Parker
229,708 Points

Shared code should be complete and properly formatted. Take a look at these videos about Posting a Question, and particularly this one about using Markdown formatting to preserve the code's appearance. Otherwise, an issue with something like indentation could be completely overlooked.

1 Answer

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

Hey Nicole A, you appear to have an indentation issue:

# this
    my_treehouse =Treehouse()

# should be
my_treehouse = Treehouse()

Post back if you need more help. Good luck!!!

Nicole A
Nicole A
1,790 Points

Thank you.