I have a 3D array with lists in lists but i want each seperate list to become just one value in the list.
eg.
[['q', 'w', 'e'], ['w', 'e', 'r'], ['e', 'r', 't'], ['r', 't', 'y']]
is my 3D array with lists in lists and i want to convert this list into:
[qwe, wer, ert, rty]
effectively joining up the lists into 1 element in the list.
Is there a simple way to do this?
qwevariable?