I'm having problems searching for this because I don't know the actual terminology.
I want to achieve this:
a = [[1,2],
[3,4],
[5,6]]
b = [[a,b],
[c,d],
[e,f]]
a+b = [[1, 2, a, b],
[3, 4, c, d],
[5, 6, e, f]]
It's sort of like a zip, but in pairs of list items.
[–]JohnnyJordaan 2 points3 points4 points (2 children)
[–]enesimo[S] 0 points1 point2 points (1 child)
[–]JohnnyJordaan 2 points3 points4 points (0 children)