class Car: count = 0 #클래스 멤버변수 def __init__(self,name) -> None: self.name = name Car.count += 1 @classmethod def outcount(cls): print(cls.count) pride = Car("프라이드") korando = Car("코란도") Car.outcount() class Car: @staticmethod def hello(): print("오늘도 안전 운행 합시다.") count = 0 def __init__(self,name) -> None: self.name = name Car.count += 1 @classmethod def outcount(cls): print(cls.count) Car.hello()..