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

Understanding Variables

I'm not sure what this is asking of me to do:

Now, create a variable named me and assign it an instance of Student(). Then print() out the name attribute of your instance.

I tried: Student(me): print(name) and me = Student() print(name)

I think I'm not fully understanding the terms variable or instance.

first_class.py
class Student:
    name = "Randall"

1 Answer

Rick Gleitz
Rick Gleitz
47,197 Points

Hi Randall,

Your instance is saved in the variable me, so your print statement needs to have a reference to that variable too, in other words, print(name) should be print(me.name) building on your second try, not your first. Hope this helps.