class Test(object):
clsAttr = 'as'
@classmethod
def clsMethod(cls, attr):
cls.clsAttr = attr
@staticmethod
def getClsAttr():
Test.clsAttr = 'im-as'
return Test.clsAttr
print 'Test.clsAttr', Test.clsAttr
Test.getClsAttr()
print 'Test.clsAttr', Test.clsAttr
Test.clsMethod('imas')
print 'Test.clsAttr', Test.clsAttr