如何在numpy数组中获取元素的索引?

时间:2015-04-26 01:13:57

标签: python arrays numpy indexing

如果我有:

a = np.array(['A','B','C','D'])

如何获得字母' C'?

的索引

1 个答案:

答案 0 :(得分:2)

np.where会找到所有职位:

> np.where(a == 'C')[0][0]
2