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 PointsDont know how to print out the name attribute of my instance
Hey can anybody help me im stuck on methods again. Dont know how to print my attribute of my instance
class Student:
name = 'Paul'
me = Student()
print(me)
2 Answers
Ollie White
6,537 PointsHi Paul, Sorry about that, after playing around a bit longer I found that this works.
class Student:
name = "Ollie"
me = Student()
print(me.name)
It looks like once you have created the "me" instance you can then access the attributes of the class through that instance.
I hope this helps, Ollie.
Ollie White
6,537 PointsHi Paul,
I just completed this challenge and the following code worked for me.
class Student:
name = "Ollie"
print(Student.name)
I hope this helps, Ollie.
Paul Mc Gonigle
2,606 PointsHi ollie.
This did not work for me because it wants an instance called "me" in it.
My error code is ""Bummer: Couldn't find me
""
Paul Mc Gonigle
2,606 PointsPaul Mc Gonigle
2,606 PointsThank you so much ollie i really struggled with this one.
Ollie White
6,537 PointsOllie White
6,537 PointsNo problem. Have fun coding!!