python class - OOP - The result of the class implementation is called an instance 파이썬의 OOP 기본 개념 class Hello: # class 생성 def greeting(self): # method 생성 print('Hello, World!') a = Hello() # instance 생성 a.greeting() # method 호출 class에는 크게 attribute과 method 두 가지가 있다. attribute는 매개변수를 받고 사용하기 위한 값, method는 만들어진 attribute를 이용해 어떤 행위를 하는 함수라고 생각해도 된다. class Member: value = [] # class attribute def in..