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 trialPaul Mc Gonigle
2,606 PointsHow 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"
class Student:
name = 'paul'
1 Answer
Steven Parker
231,198 PointsThe syntax for making an instance looks the same as assigning the result of calling a function to a variable:
me = Student()
Paul Mc Gonigle
2,606 PointsPaul Mc Gonigle
2,606 PointsOkay Steven, thank you.
Ricardo Büttner
2,426 PointsRicardo Büttner
2,426 PointsHey Steven, I got up to that point. But then how do you print out the name attribute of your instance?
Steven Parker
231,198 PointsSteven Parker
231,198 PointsUsing 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.