Python 에서 정의된 Function 을 Call 하는 방법입니다.
매우 쉽지만 에러가 났을 때, 찾지를 못해서 기록해봅니다.
class MySample
def func1(self, arg1)
return arg1
def func2(self, arg2)
return self.func1(self,arg2)
위와 같이 self 를 function 앞에 달아주면 됩니다.
'Tools > Python' 카테고리의 다른 글
[Python] Error Message : not enough arguments for format string (0) | 2016.09.06 |
---|---|
[GAE in Python] TypeError: Error when calling the metaclass bases (0) | 2016.09.05 |
[Python] dict add method (0) | 2016.05.31 |
[python] python installer 설치 - easy_install (0) | 2015.08.20 |