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 trialVictor Katsande
3,094 PointsHELP me on this one about class and instances
THE QUESTION READS: Great work!
Now, make an instance of your class named me.
Then print() out the name attribute of your instance.
class Student:
name = "Victor"
me = Student()
print me.name
1 Answer
andren
28,558 PointsYou have forgotten to use parenthesis when calling the print
function. If you add them like this:
class Student:
name = "Victor"
me = Student()
print(me.name) # Print is a function so you have to use parenthesis to call it
Then your code will pass.
It's worth mentioning that your code would actually work if you ran it in Python 2 due to print
being classified as a keyword rather than a function in that version of Python. But in Python 3 which is what is taught on Treehouse it is invalid.