這篇文章主要介紹了關於python topN 取最大的N個數或最小的N個數方法,有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下
如下:
import numpy as np a = np.array([1,4,3,5,2]) b = np.argsort(a) print(b)
print結果[0 4 2 1 3]
說明a[0]最小,a[3]最大
a[0]<a[4]<a[2]<a[1]<a[3]
以上是python topN 取最大的N個數或最小的N個數方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!