sum(i*i for i in range(10)) # sum of squaresxvec = [10, 20, 30]yvec = [7, 5, 3]print sum(x*y for x,y in zip(xvec, yvec)) # dot product