NumPy數組重塑的方法包括使用reshape()方法和resize()方法。
import numpy as np
arr = np.array([1, 2, 3, 4, 5, 6])
new_arr = arr.reshape(2, 3)
print(new_arr)
import numpy as np
arr = np.array([1, 2, 3, 4, 5, 6])
arr.resize(2, 3)
print(arr)
這兩種方法都可以用來改變數組的形狀,但是reshape()方法會返回一個新數組,而resize()方法會就地修改原數組。