You can use multiply() function of Numpy to compute the product of two lists element-wise.
E.g.
>>> xarray([1, 2, 3])>>> yarray([4, 5, 6])>>> np.multiply(x,y)array([ 4, 10, 18])>>>