작성
·
310
0
답변 1
1
매물 초기화 부분에서 deal_type 부분이 빠져서 오류가 뜨는거에요~~
def __init__(self, location, house_type, price, completion_year):
def __init__(self, location, house_type, deal_type, price, completion_year):
또한, 매물 정보 표시 부분에 아래 코드 부분을
# 매물 정보 표시
def show_detail(self):
print(self.location, self.house_type, self.deal_type\
, self.price, self.completion_year)
이렇게 변경해주세요~
# 매물 정보 표시
def show_detail(self):
print(self.location, self.house_type, self.deal_type, self.price, self.completion_year)
매물 초기화 부분과 매물 정보 표시 부분을 살짝 수정하면 오류는 잡힐거에요~~
------------------------------------------------------------
도움이 되었으면 우측하단 또는 좌측하단에 하트 한번만 눌러주세요 :)
또한, 해결이 안된 경우 답글 작성 부탁드립니다!
아 감사합니다 ㅠㅠㅠ 진짜 어이없는 실수였네요..ㅋㅋㅋㅋㅋ 감사드려요!!