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