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 trialAnurag k
902 Pointsyour first class
I completely don't know what is instances and correct me in the code below
class Student:
name = "rag"
hame="nom"
Student.hame = me
print(Student.name)
3 Answers
Mohsen foroughi
607 Pointsclass Student():
name = "rag"
me = Student()
print(me.name)
Anurag k
902 PointsI tried that its saying task 1 no more working
Thomas McDonnell
8,212 PointsHi Anurag, There should be no () when you are creating a class. class Student: name = "rag" me = Student() print(me.name)