[Python] class def function call method

Tools/Python 2016. 5. 31. 00:10 posted by B&U

Python 에서 정의된 Function 을 Call 하는 방법입니다.

매우 쉽지만 에러가 났을 때, 찾지를 못해서 기록해봅니다.

 

 

class MySample

def func1(self, arg1)

return arg1

 

def func2(self, arg2)

return self.func1(self,arg2)

 

위와 같이 self 를 function 앞에 달아주면 됩니다.