Python icons created by Freepik - Flaticon 파이썬에선 class를 통해 객체를 선언할때, 객체 내부 변수들을 선언하면서 초기화해주는 메서드가 있다. class HelloWorld: def __init__(self): self.class_variable = 0 def는 새로운 함수를 정의할때 사용하는 keyword이다. 그러므로 우리는 __init__ 이라는 이름을 가진 클래스 메서드를 새로 만든것이다. import HelloWorld helloworld = HelloWorld() helloworld.__init__() 클래스메서드를 사용하려면 호출을 해줘야한다. ..? 조금 이상한점을 느끼지 않았는가? 우리는, 적어도 나는 객체를 만든후 저런식으로 초기화 메서드를 호출하..