I have the following code I wrote to calculate the distance between two lists of points:
def calc_dist(self, v1, v2): diff = [numpy.abs(v1[i] - v2[i])