I would like to join the same index elements of many different lists of lists and obtaining a list of lists of the joined elements. The lists always have the same length. Here is an example much simpler to understand.
list1 = [[1, 0], [1, 0], [1, 0], [0, 1]]
list2 = [[2, 1], [2, 1], [1, 2], [3, 2]]
Results I would like to obtain:
LIST = [[1,0,2,1],[1,0,2,1],[1,0,1,2],[0,1,3,2]]
Any help would be really appreciated.
[sum(i, []) for i in zip(list1, list2)]