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 trialJonathan Fanno
52 PointsYour IDE threw a false error message.
I misspelled print() as ptint(). This should have thrown a relevant error message. Instead it told me it "couldn't find 'Student'". I pasted the code into Pycharm IDE, and it correctly identified the problem. That was aggravating, since I was trying to find a problem in the code related to the class not being found.
class Student:
pass
Student.name = "Jonathan"
me = Student()
print(me.name)
1 Answer
Steven Parker
231,248 PointsThis must be an older course. I've noticed that the newer courses have a different display with a separate pane on the right to display the direct output from the Python interpreter. I'd bet that every course will have this once they get around to refreshing them.