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

Dont 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

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

print(me)

2 Answers

Ollie White
Ollie White
6,537 Points

Hi 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.

Thank you so much ollie i really struggled with this one.

Ollie White
Ollie White
6,537 Points

No problem. Have fun coding!!

Ollie White
Ollie White
6,537 Points

Hi 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.

Hi 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""