클래스 함수 호출과 객체 생성 구분이 안된다. -> 객체 생성시, 관습적으로 대문자로 시작 # 상품정보 전용 데이터 타입 class Product: count = 0 def __init__(self, type, 제조사, 크기, 가격): self.type = type # 객체당 하나 존재 self.제조사 = 제조사 self.크기 = 크기 self.가격 = 가격 Product.count += 1 # 클래스당 하나 존재 def __del__(self): print("instacne is removed") def print_info(self): print(f"type : {self.type}, 제조사 : {self.제조사}, 크기 : {self.크기}, 가격 : {self.가격}") p1 = Product(ty..