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

How does one make an instance from a class?

Really stuck with this task as i do not fully understand instances yet? Can anybody help me? The question is "Great work!

Now, make an instance of your class named me.

Then print() out the name attribute of your instance"

first_class.py
class Student:
    name = 'paul'

1 Answer

Steven Parker
Steven Parker
229,732 Points

The syntax for making an instance looks the same as assigning the result of calling a function to a variable:

me = Student()

Okay Steven, thank you.

Ricardo Büttner
Ricardo Büttner
2,426 Points

Hey Steven, I got up to that point. But then how do you print out the name attribute of your instance?

Steven Parker
Steven Parker
229,732 Points

Using the membership operator (a period) you can access an attribute of a class ("me.name"). Then just pass that as the argument in a "print" function call.