게시글
질문&답변
2022.01.08
Attribute Error
해당 소스코드만 돌려도 저 에러가 나타납니다..ㅠ
- 0
- 4
- 488
질문&답변
2022.01.08
Attribute Error
class Car(): # 괄호는 없어도 됨 # str: 사용자 입장에서 출력할때는 (비공식적인, 프린터 문으로 문자열로 출력) # repr: 객체 형태를 그대로 표시해줄때 def __init__(self, company, details): self._company = company self._details = details def __str__(self): # 파이썬 내부에 이미 str인스턴스가 있음 (지원해줌) return 'str : {} - {}'.format(self._company. self._details) def __repr__(self): return "repr : {} - {}".format(self._company. self._details) car1 = Car('Ferrari', {'color' : 'White', 'horsepower' : 400, 'price' : 8000}) car2 = Car('BMW', {'color' : 'Black', 'horsepower' : 270, 'price' : 5000}) car3 = Car('Audi', {'color' : 'Shilver', 'horsepower' : 300, 'price' : 6000})
- 0
- 4
- 488