极简代码(二)—— 内积

def inner_prod(x, y):
    return reduce(operator.add, map(operator.mul, x, y))

你可能感兴趣的:(极简代码(二)—— 内积)