python@classmethod,@staticmethod ,def 静态方法,类方法,普通方法
#coding=utf-8classTest(object):def__init__(self,name):self.age=33self.name=name#普通方法,只能被对象调用defwalk(self,place):printplace,self.walk.__name__,self#静态方法既可以被对象也可以被类名称调用@staticmethoddefplay(string):print