아래와 같이 생성자 안에서 인스턴스 변수 정의하면 `self.변수`를 사용하면 되고,class MovieTheater: def __init__(self, name, total_seats): self.name = name self.total_seats = total_seats self.reserved_seats = 0아래와 같이 생성자 밖에서 클래스 변수 정의하면 `클래스명.변수`를 사용해야한다!class Product: product_count = 0 def __init__(self, name, price): self.name = name self.price = price Product.product_count +..