Python math.dist() 方法

实例

求一维和二维点之间的欧氏距离:

  1. # Import math Library
  2. import math
  3. p = [3]
  4. q = [1]
  5. # Calculate Euclidean distance
  6. print (math.dist(p, q))
  7. p = [3, 3]
  8. q = [6, 12]
  9. # Calculate Euclidean distance
  10. print (math.dist(p, q))

结果为:

  1. 2.09.486832980505138

定义与用法

math.dist() 方法返回两点(p和q)之间的欧氏距离,其中p和q是该点的坐标。

注:两点(p和q)的尺寸必须相同。


语法

  1. math.dist(p, q)

参数值

参数描述
p必填。指定点 1
q必填。指定点 2

技术细节

返回值:一个 float 值,表示p和q之间的欧氏距离
Python 版本:3.8

分类导航