Interpolação de Lagrange em Python

Eu quero interpolar um polinômio com o método Lagrange, mas esse código não funciona:

def interpolate(x_values, y_values):
    def _basis(j):
        p = [(x - x_values[m])/(x_values[j] - x_values[m]) for m in xrange(k + 1) if m != j]
        return reduce(operator.mul, p)

    assert len(x_values) != 0 and (len(x_values) == len(y_values)), 'x and y cannot be empty and must have the same length'

    k = len(x_values)
    return sum(_basis(j) for j in xrange(k))

eu seguiWikipedia, mas quando o executo, recebo um IndexError na linha 3!

obrigado

questionAnswers(2)

yourAnswerToTheQuestion