我有一个如下的numpy数组-
test= [['test1' 'human,cow' 'human,cow' 'human,cow']
['test2' 'wheat,mouse' 'wheat,mouse' 'wheat,mouse']
['test3' 'wallaby,mouse' 'wallaby,mouse' 'wallaby,mouse']]
当我尝试获取数组值时,例如test[0,1]
,我得到了array(['human,cow'], dtype='<U13')
。如何获得实际值human,cow
而不是array[], dtype=
?