如何在数组中找到第一个元素?

时间:2019-04-04 00:25:14

标签: python arrays numpy scipy

我是Python的新手,我试图获取一行中的第一个元素并打印它。我该怎么办?

例如,数组A具有:

([[   0, 435, 500, 432, 658]])

我需要打印0。我该怎么做?

1 个答案:

答案 0 :(得分:2)

这是一个只有1行的2D数组的示例,因此可以使用以下[0,0]

第一个0将选择第一行或一维数组,第二个0将选择该数组中的第一个元素。 有关索引numpy数组的更多信息,请参见:https://docs.scipy.org/doc/numpy-1.13.0/user/basics.indexing.html

arr=np.array([[   0, 435, 500, 432, 658]])
#To get the first element from the array inside the first array, you should do
print(arr[0,0])