#coding=utf-8 import numpy as np a = np.arange(2,14).reshape(3,4) print(a) # [[ 2 3 4 5] ... 使用vertical stack : vstack 垂直合併兩個array.
確定! 回上一頁