class C(object): spam = 100 c1 = C() print c1.spam C.spam += 100 print C.spam print c1.spam c2 = C() print c2.spam del c1 print c2.spam
Name (required)
email (will not be published) (required)
Website