Python math.dist() 方法
例如:
找到一维和二维点之间的欧几里得距离:结果将是:
# Import math Libraryimport mathp = [3]q = [1]# 计算欧氏距离print (math.dist(p, q))p = [3, 3]q = [6, 12]# Calculate Euclidean distanceprint (math.dist(p, q))
1、定义和用法
math.dist()
方法返回两个点(p和q)之间的欧几里得距离,其中p和q是该点的坐标。
注意:两个点(p和q)必须具有相同的尺寸。
2、调用语法
math.dist(p,q)
3、参数说明
参数 | 描述 |
p | 必需的参数, 指定点1 |
q | 必需的参数, 指定点2 |
4、方法说明
返回值: |
|
Python Version: | 3.8 |