📅  最后修改于: 2023-12-03 14:46:07.108000             🧑  作者: Mango
Python有许多数学计算方法,其中一种是math.dist()方法。这种方法返回两个向量的欧几里得距离。在本文中,我们将学习如何使用math.dist()方法以及其相关信息。
以下是math.dist()方法的语法:
math.dist(p, q)
math.dist()方法接收两个参数:
返回值:返回两个向量的欧几里得距离。
以下代码演示如何使用math.dist()方法:
import math
# define two vectors
a = (1, 2, 3)
b = (4, 5, 6)
# calculate the euclidean distance between these two vectors
distance = math.dist(a, b)
# print the result
print(distance)
以上代码将返回:
5.196152422706632