1번 문제: 부동산 프로그램 만들기 #부동산 프로그램 만들기 #1. 생성자로 인스턴스 변수 정의. show_detail()메서드 -> 매물정보 표시 #2. 3가지 매물을 객체로 만듦. 메서드를 호출 해 매물정보 표시 class House: def __init__(self, location, house_type, deal_type, price, completion_year): self.location = location self.house_type = house_type self.deal_type = deal_type self.price = price self.completion_year = completion_year print("총 3가지 매물이 있습니다.") def show_detail(self): ..