I was trying to "flatten" an array, to convert it to 1 single dimension set of items. I work with the append command and I get this:
[['X', 'X'],['ff','ff','ff','ff','ff']]
But I would prefer to have the elements sorted as:
['X','X','ff','ff','ff','ff','ff']
I cannot use the string.join() or string.split() operators. So which is the most sensible way to perform this action?