可以使用numpy的函數np.flip()
來對數組進行倒序排列。函數的語法如下:
np.flip(array, axis=None)
其中,參數array
是要進行倒序排列的數組,參數axis
表示沿著哪個軸進行倒序排列,默認為None,表示對整個數組進行倒序排列。
以下是使用np.flip()
函數進行倒序排列的示例:
import numpy as np
# 創建一個一維數組
arr = np.array([1, 2, 3, 4, 5])
# 對數組進行倒序排列
arr_reverse = np.flip(arr)
print(arr_reverse)
# 輸出:[5 4 3 2 1]
import numpy as np
# 創建一個二維數組
arr = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]])
# 對數組進行倒序排列
arr_reverse = np.flip(arr, axis=0)
print(arr_reverse)
# 輸出:
# [[7 8 9]
# [4 5 6]
# [1 2 3]]
通過使用np.flip()
函數,可以方便地對numpy數組進行倒序排列。