[Python] self 에 대해서 알아보기 (__init__ , __new__)
광고 한 번씩 눌러주세요! 블로그 운영에 큰 힘이 됩니다 :) class Person: def __init__(self, name, age): self.name = name self.age = age def greet(self, other): print(f'{self.name} says hello to {other}.') Person instance object가 어떻게 생성되는지에 대한 예시가 있다. person = Person('John Smith', 25) print(person.__dict__) `__dict__` 속성을 호출하면, 객체 `person`에는 `name` 과 `age`가 있다. What’s self in the __init__() method? 이 글 참고 person.greet('..
2020.04.09