one_array = [i for i in range(9)] #取得一維數據[0, 1, 2, 3, 4, 5, 6, 7, 8]. two_array = np.array(one_array).reshape(3, 3) #轉換成二維.
確定! 回上一頁