.如何知道数组np.array([7,2,10,2,7,4,9,4,9,8])中的第n大的数是多少?
时间: 2023-05-12 20:03:56 浏览: 118
如何寻找数组中的第二大数
5星 · 资源好评率100%
可以使用numpy中的sort函数对数组进行排序,然后取第n大的数。代码如下:
import numpy as np
arr = np.array([7,2,10,2,7,4,9,4,9,8])
n = 3
sorted_arr = np.sort(arr)
nth_largest = sorted_arr[-n]
print(nth_largest)
输出结果为:8
阅读全文