Let say I have an array:
array([('a', 1), ('b', 2), ('c', 3), ...,
('x', 24), ('y', 25), ('z', 26)],
dtype=object)
How do I split it into 2 columns as in 'alphabet' and 'order'? Much appreciated!
Let say I have an array:
array([('a', 1), ('b', 2), ('c', 3), ...,
('x', 24), ('y', 25), ('z', 26)],
dtype=object)
How do I split it into 2 columns as in 'alphabet' and 'order'? Much appreciated!