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

Anurag k
Anurag k
902 Points

your first class

I completely don't know what is instances and correct me in the code below

first_class.py
class Student:
    name = "rag"
    hame="nom"
    Student.hame = me
    print(Student.name)

3 Answers

Mohsen foroughi
Mohsen foroughi
607 Points

class Student():

      name = "rag"

me = Student()

print(me.name)

Anurag k
Anurag k
902 Points

I tried that its saying task 1 no more working

Thomas McDonnell
Thomas McDonnell
8,212 Points

Hi Anurag, There should be no () when you are creating a class. class Student: name = "rag" me = Student() print(me.name)