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