Say I have the following two lists/numpy arrays:
List1 = [[1,2,3,4], [10,11,12], ...]
List2 = [[-1,-2-3,-4], [-10,-11,-12], ...]
I would like to obtain a list that holds the zipping of the nested lists above:
Result = [[(1,-1), (2,-2), (3,-3), (4,-4)], [(10,-10), (11, -11), (12,-12)], ...]
Is there a way to do this with a one-liner (and in a Pythonic way)?