Given:
[['A', 'B', 'C'], ['1', '2', '3'], ['Z', 'X']]
Is there a way to concatenate every element from the lists in the list for every index 1 to 1 not 1 to many without using a lot of for statements? And the output to be a list with every concatenation as its elements?
Expected output:
['A1Z','B2X', 'C3']