python三维数组作为索引时只取第一个维度

ptest = np.zeros([4],np.uint64)
qtest = np.zeros([3],np.uint64)   ###实验表明三维数组作为索引时只取第一个维度吧
 print(qtest.shape)
 ptest[qtest] += 1
 print(ptest)

输出结果:

(3,)
[1 0 0 0]

你可能感兴趣的:(Python)