class ClassName(상속받을클래스): def __init__(self, value): # 생성자 self.property = value def mathod(self, parameter): ...code... instance = ClassName(100) # 인스턴스 생성 Encapsulation 파이썬에서의 Encapsulation은 underscore(_)로 지원한다. 1. private 언더스코어 2개(__)를 앞에 붙인다. 2. protected 언더스코어 1개(_)를 앞에 붙인다.