I already had this problem multiple times, that I couldn’t find a good solution to add the content of two tuples together.
Something that does :
a = (1, 2)
b = (3, 4)
c = (a[0]+b[0], a[1]+b[1])
I think I saw a syntax to do just that once, but I can’t remember how to do it.
This one also works:
It should work with any number of lists containing any number of numbers.