在Python中,用turtle画图-计算两点之间的距离。输入两个点A(x1,y1)和B(x2,y2)。计算AB的距离,要求如下。
时间: 2024-10-29 14:14:35 浏览: 16
python画图-使用Python+turtle实现画名字.zip
在Python中,我们可以使用`math`模块来计算两点之间(通常称为笛卡尔坐标系中的欧几里得距离)的距离。首先,我们需要导入`math`,然后定义一个函数`distance_between_points`接收两个点A和B的坐标作为参数。这里是一个简单的示例:
```python
import math
def distance_between_points(point_A, point_B):
x1, y1 = point_A
x2, y2 = point_B
# 使用勾股定理公式计算两点间的距离
distance = math.sqrt((x2 - x1)**2 + (y2 - y1)**2)
return distance
# 示例:假设用户输入的点A(0,0),点B(3,4)
point_A = (0, 0)
point_B = (3, 4)
AB_distance = distance_between_points(point_A, point_B)
print(f"两点A({point_A})和B({point_B})之间的距离为 {AB_distance}.")
#
阅读全文