📜  Python – math.dist() 方法(1)

📅  最后修改于: 2023-12-03 14:46:07.108000             🧑  作者: Mango

Python – math.dist() 方法

Python有许多数学计算方法,其中一种是math.dist()方法。这种方法返回两个向量的欧几里得距离。在本文中,我们将学习如何使用math.dist()方法以及其相关信息。

语法

以下是math.dist()方法的语法:

math.dist(p, q)
参数

math.dist()方法接收两个参数:

  • p - 一个向量
  • q - 另一个向量

返回值:返回两个向量的欧几里得距离。

示例

以下代码演示如何使用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
注意事项
  • 如果向量的长度不匹配,则将引发ValueError异常。