CLASSES

class A:
  i = 123

A.i = 'hello' #class modification

inst = A()    #creating an instance
print inst.i  #accessing members