import numpy as np a = np.random.randint(1,10,(3,1,4)) print(a.shape) # out:(3,4) a = a.flatten() print(a.shape) # out:(12,) ...
確定! 回上一頁