I have two lists, one is named as A, another is named as B. Each element in A is a triple, and each element in B is just an number. I would like to calculate the result defi
>>> X = [2,3,5,7,11] >>> Y = [13,17,19,23,29] >>> dot = lambda X, Y: sum(map(lambda x, y: x * y, X, Y)) >>> dot(X, Y) 652
And that's it.