定义类point求两点距离
时间: 2023-05-19 07:04:39 浏览: 158
友元机制计算两点之间的距离
好的,这是一个简单的类point的定义,可以用来计算两点之间的距离:
```python
class Point:
def __init__(self, x, y):
self.x = x
self.y = y
def distance(self, other):
dx = self.x - other.x
dy = self.y - other.y
return (dx ** 2 + dy ** 2) ** 0.5
```
使用方法:
```python
p1 = Point(0, 0)
p2 = Point(3, 4)
print(p1.distance(p2)) # 输出 5.0
```
希望这个回答能够帮到你!
阅读全文