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 class

John . Meredith
John . Meredith
2,020 Points

How do I get the class to work keep getting back that it find Student instance

I keep getting that it can't find student reworked couple of different ways same error what am I misssing?

first_class.py
class Student:
    name = 'John'
    me = Student()
    print(name)

1 Answer

What it's actually asking for is first just create the class:

class Student:
    name = 'Rob'

And then after wards USE the class rather than add to the definition:

me = Student()
print(me.name)

So then end result is:

class Student:
    name = 'Rob'

me = Student()
print(me.name)