If I have different lists such as :
['D1', 'D2', 'D3'] ['S1', 'S2', 'S3'] ['X1', 'X2', 'X3']
How can I create a list of lists that groups elements from different lists according to their index ? I want to obtain the following output :
[['D1', 'S1', 'X1'] ['D2', 'S2', 'X2'] ['D3', 'S3', 'X3']