Python/Intermediate (18) 썸네일형 리스트형 [Python] Class(2) - self, 매직 매소드 # 클래스 재 선언 class Car(): """ Car Class """ # 클래스 변수 car_count = 0 def __init__(self, company, details): self._company = company # 인스턴스 변수 self._details = details Car.car_count += 1 # 클래스 변수 def __str__(self): return 'str : {} - {}'.format(self._company, self._details) def __repr__(self): return 'repr : {} - {}'.format(self._company, self._details) def detail_info(self): print('Current Id : {}'.fo.. [Python] Class(1) - Basic print(car1) 과 print(car_list) 의 차이에 주의할 것 print(car1) - str 로 출력 print(car_list) - repr 로 출력 class Car(): def __init__(self, company, details): self._company = company self._details = details def __str__(self): # 매직 메소드, 간단한 사용자 레벨의 출력 return 'str : {} - {}'.format(self._company, self._details) def __repr__(self): # 매직 메소드, 엄격한 개발자 레벨의 출력 return 'repr : {} - {}'.format(self._company, self._detai.. 이전 1 2 3 다음