[Python]Decorator

Decorator란? 디자인 패턴 중 하나인 decorator pattern과 비슷한 개념으로, 반복적인 것을 공통화하고, 메소드나 클래스의 기능을 확장할 수 있는 방법이다

[Python] Docstring

Docstring이란? docstring은 module, function, class, method에 대한 문서화 작업을 말한다. docstring은 __doc__ special attribute에 저장된다