I have a list which I want to convert into matrix. But when using numpy I am not able to remove inverted commas.
List -
[['b', 'd', 'a', 'c'], ['b1', 'd1', 'a1', 'c1'], ['b2', 'd2', 'a2', 'c2']]
Using Numpy -
[['b' 'd' 'a' 'c']
['b1' 'd1' 'a1' 'c1']
['b2' 'd2' 'a2' 'c2']]
What I need -
b d a c
b1 d1 a1 c1
b2 d2 a2 c2
Thanks
numpywith the matrix of strings?