[파이썬 Python] __str__
2020. 12. 17. 01:50ㆍpython/초급 파이썬
728x90
반응형
특수메소드
double underscore method 라고도 한다.
print 함수를 사용할때 인스턴스(instance)를 출력을 할때 사용한다.
class Market:
def__init__(slef,....):
.....생략 앞글과 동일
def __str__(self):
return f'회사명{self.name}, 종목코드{self.code}'
kospi = Market('삼성전자','005930','72000')
print(kospi)
반응형
'python > 초급 파이썬' 카테고리의 다른 글
[파이썬 Python] 클래스 메서드 @classmethod (0) | 2020.12.17 |
---|---|
[파이썬 Python] 데코레이터 @decorator (0) | 2020.12.17 |
[파이썬 Python] __init__ (0) | 2020.12.17 |
[파이썬 python] 모듈 module (0) | 2020.12.16 |
[파이썬 Python] 리스트 list (0) | 2020.12.15 |