有关类方法属性,静态方法,实例方法属性
class Game(): # 这是个类属性 top_fen = 0 @classmethod # 这是类方法 def show_top_fen(cls): print("最高分是%d,这是个类方法" % cls.top_fen) @staticmethod # 这是个静态方法 def show_help(): print("这个是个静态方法,不调用类属性和方法,也不调用实例属性和方法") def __init__(self, name): self.name = name print("%s这是实例属性" % self.name) def play_game(self): print("%s开始游戏了,这是个实例方法" % self.name) game = Game("'传入的名字'") print(game) print(Game.top_fen) Game.show_top_fen() Game.show_help() game.play_game()