두 좌표 사이의 거리를 계산하는이 코드가 있습니다. 두 함수는 모두 같은 클래스 내에 있습니다.
그러나 함수 distToPoint
에서 함수 를 어떻게 호출 isNear
합니까?
class Coordinates:
def distToPoint(self, p):
"""
Use pythagoras to find distance
(a^2 = b^2 + c^2)
"""
...
def isNear(self, p):
distToPoint(self, p)
...
41
try : self.distToPoint (p)
—
momeara
isNear와 distToPoint가 다른 인수를 취하는 경우 어떻게됩니까? 그렇다면 클래스 내부에있는 distToPoint를 어떻게 호출 할 수 있습니까? 누구든지 저에게 설명 할 수 있습니다.
—
Raghavendra Gupta