代码示例:(标识:python_numpy_array_search_5)
python_numpy_array_search_5.py
import numpy as np

arr = np.array([6, 7, 8, 9])

x = np.searchsorted(arr, 7, side='right')

print(x)
运行结果: