# element-wise multiplication of x & y >>>x = [1,2,3,4] >>>y = [2,3,4,5] >>>[a*b for a,b in zip(x,y)] [2, 6, 12, 20]