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 trialNicole A
1,790 PointsPython 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))
1 Answer
Chris Freeman
Treehouse Moderator 68,441 PointsHey 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
1,790 PointsThank you.
Steven Parker
231,236 PointsSteven Parker
231,236 PointsShared 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.