--> Python ∼ Distance from math import * x1 = 10 y1 = -3 x2 = 2 y2 = 5 l = sqrt( (x2-x1)**2 + (y2-y1)**2 ) print l