I have a regular list filled with strings of equal length:
['FADVAG', 'XXDXFA', 'GDXX..']
I want to transform it into a 2d numpy array, like the following:
[['F' 'A' 'D' 'V' 'A' 'G']
['X' 'X' 'D' 'X' 'F' 'A']
['G' 'D' 'X' 'X' '.' '.']]
How can I do that?