尝试使用所需索引号列表访问和打印数组的特定索引

Trying to access and print specific indices of an array using a list of the required index numbers

我有一个形状为 (8790,8) 的数组,所以信息量很大。我创建了一个过滤器,这样我就可以访问这个数组的特定索引。例如 - 我的列表类似于 (79,2345,4544,6789,6790)。我想使用此列表打印原始数组中的完整对应索引。我试过了....

For i in finalList:
    if origArray[i][6] == choice:
        outputList.append(i)
        print(outputList)

我收到类型错误:'int' 对象不可迭代。

肯定是变量声明的问题finalList 这工作正常

>>> finalList = (79,2345,4544,6789,6790)
>>> for i in finalList:
...   print(i)
...
79
2345
4544
6789
6790