from math import sqrt
def get_distance(origin, destination):
'''Distance Between Two Points'''
(o_x, o_y) = origin
(d_x, d_y) = destination
return sqrt((d_x - o_x)**2.0 + (d_y - o_y)**2.0)
from math import sqrt
def get_distance(origin, destination):
'''Distance Between Two Points'''
(o_x, o_y) = origin
(d_x, d_y) = destination
return sqrt((d_x - o_x)**2.0 + (d_y - o_y)**2.0)