目录类方法静态方法1特点2使用场景总结类方法 需要用装饰器@classmethod来标识其为类方法,对于类方法,第一个参数必须是类对象,一般以cls作为参数
目录类方法静态方法复习总结类方法 class People: country=\'China\' # 类方法 用classmethod来修饰