파이썬 __init__ 썸네일형 리스트형 [파이썬 클래스] 클래스(classes) >>> class Gma(object):... def __init__(self,name):... self.name = name... def hello(self,loud = False):... if loud:... print 'HELLO,%s!' % self.name.upper()... else:... print 'Hello,%s' % self.name... >>> >>> g = Gma('JiYeon') >>> g.hello()Hello,JiYeon >>> g.hello(loud = True)HELLO,JIYEON! >>> 파이썬에서는 클래스 내부에 선언되는 함수는 self를 첫번째 인자로 가져야한다. self는 자기자신 인스턴스를 의미한다. __init__는 생성자를 의미한다. 객.. 더보기 이전 1 다음