pythonCopy import numpy as np arr = np.array([[1,2,3],[4,5,6]]) row = np.array([7,8,9]) arr = np.append(arr,[row],axis= 0) print(arr).
確定! 回上一頁