day24 类的成员之方法 - 普通方法,保存在类中,由对象来调用,self > 对象 - 静态方法,保存在类中,由类直接调用 - 类方法,保存在类中,由类直接调用,cls > 当前类 class Foo(): def bar(self): print('bar') @staticmethod def sta():#静态方法,其中self不是必须的,不需对象 ') @staticmethod def stat(a1, a2): print(a1, a2) @classmethod def cl…