import numpy as np. the_array = np.array([ 1 , 2 , 3 ]). repeat = 3. new_array = np.tile(the_array, (repeat, 1 )). print (new_array) ...
確定! 回上一頁