例如,如果我有:为什么我需要self.thing()?
class bla: def hello(self): self.thing() def thing(self): print "hello"
你:
静态版
class bla: @staticmethod def hello(): bla.thing() @staticmethod def thing(): print "hello"