I have a numpy array that has lists inside. this is my numpy array structure
array([list(['記', 'hk', '超抵', '玩', '轉台', '優惠', '無限', '任用']),
list(['学生', '个人', '兼职', '援交', '加']), list(['轉', '台大', '優惠']), ...,
list(['af', 'ia']), list(['交換', 'sourc']),
list(['美食', 'cf', 'asm', '幾分'])], dtype=object)
The i've used
np.where(Arr=="ia")
but i didn't get any index return. this is my output
(array([], dtype=int64),)
How can i access the element index like normal numpy array? thanks in advance.