2
ฟังก์ชั่นการโทรหลามภายในชั้นเรียน
ฉันมีรหัสนี้ซึ่งคำนวณระยะทางระหว่างสองพิกัด ทั้งสองฟังก์ชั่นมีทั้งภายในชั้นเดียวกัน อย่างไรก็ตามฉันจะเรียกใช้ฟังก์ชัน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) ...