gpt4 book ai didi

python - 如何找到两点之间的距离?

转载 作者:IT老高 更新时间:2023-10-28 20:35:47 25 4
gpt4 key购买 nike

假设我有 x1, y1 和 x2, y2。

我怎样才能找到它们之间的距离?这是一个简单的数学函数,但是网上有这个片段吗?

最佳答案

dist = sqrt( (x2 - x1)**2 + (y2 - y1)**2 )

正如其他人所指出的,您也可以使用等效的内置 math.hypot() :

dist = math.hypot(x2 - x1, y2 - y1)

关于python - 如何找到两点之间的距离?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5228383/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com