생성자1 [Python] 생성자(__init__)와 소멸자(__del__) Definition : 생성자, 소멸자는 객체의 처음과 끝을 장식하는 호출 함수 1. 생성자(Constructor) 파이썬은 클래스(Class)를 만들고 인스턴스(Instance)가 생성이 될 때 자동으로 생성자(__init__)가 같이 생성된다. Default : class New : def __init__(self): pass 클래스 내부적으로 항상 존재하나 별도의 기능이 있는 것이 아니기에 필요에 따라 개발자가 기능을 부여할 수 있다. Example : class Example : def __init__ (self, test1, test2): print(f"{test1} is printed") print(f"{test2} is printed") # Create new instance instance.. 2022. 10. 21. 이전 1 다음