So i opened a dataset and in short it looked something like this:
list1= ['Adrian,20,5,2000,green', 'Steve,15,6,1997,blue', ...]
trial = np.array(list1)
when i tried to print(trial[0][0]) to get Adrian, i only got the A.
So i figured i should make everything that has a comma after it an independent element, please help me get the output to be:
(['Adrian', 20, 5, 2000, 'green'], ['steve', 15, 6, 1997, 'blue'], ...)
where print(trial[0]) will give: ['Adrian', 20, 5, 2000, 'green']
and print(trial[0][0]) will give: Adrian