I have two lists of integers:
xList = [(1, 2), (3,4)]
yList = [(5, 6), (7, 8)]
I want to add the first element of xList to the first element of yList etc so that the output is as follows
[(6, 8), (10, 12)]
Any ideas that I can try using numpy or otherwise?