在这里,您可以使用返回的索引测试最大值,当您打印索引时,返回的索引应该类似于 (array([0], dtype=int64), array([2], dtype=int64))。 import numpy as np a = np.array([[200,300,400],[100,50,300]]) indices = np.where(a == a.max()) print(a[indices]) # prints [400] # Index fo...