예시 class FourCal

class FourCal:
    def __init__(self, first, second):
        first = self.first
        second = self.second

$ python

>>> test_instance = FourCal(3, 4)

와 같이 입력시, class의 __init__ 함수가 바로 실행된다. 즉, class를 불러 객체를 생성할때에 실행되는 파트를 __init__함수에 넣는 것으로 보면 된다.

 

 

+ Recent posts