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