我有这段代码可以计算两个坐标之间的距离。这两个函数都在同一类中。
但是,如何在函数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
试试:self.distToPoint(p)
—
momeara 2011
if isNear和distToPoint使用不同的参数怎么办?然后我们如何调用类内部的distToPoint?任何人都可以为我解释一下。
—
Raghavendra Gupta,