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 trialsalih bag
1,779 PointsThen print() out the name attribute of your instance.
It says ''Couldn't find 'Student'.''
class Student:
name = 'Salih'
me = Student()
Print(me.name)
2 Answers
Steven Parker
231,236 PointsThe error message is a bit confusing, but the issue is the spelling of "Print" (with a capital "P") instead of "print" (all lower case).
jhon white
20,006 Pointsyou should use (p) not (P) in (print) function. Everything else is looking good. good luck:)
salih bag
1,779 Pointsthank you so much
jhon white
20,006 Pointsyour welcome.
salih bag
1,779 Pointssalih bag
1,779 Pointsthank you so much