Python 找 2點間長度 Posted on 2020-03-222020-03-22 距離公式:設A(X ,Y) ,B(R ,S)為平面上兩點,則距離長度 換成python 寫法: dist = sqrt( (x2 - x1)2 + (y2 - y1)2 ) 較佳寫法: from math import hypot dist = hypot(x2-x1, y2-y1) 如果使用 (3,4) 會得到 5.0