array = np.array([7, 5, 3, 2, 6, 1, 4]) # Sort in ascending order sorted_array = np.sort(array) # [1, 2, 3, 4, 5, 6, 7] # Reverse the sorted array ...
確定! 回上一頁