Numpy – add row to array October 11, 2022 by Tarik You can do this: newrow = [1, 2, 3] A = numpy.vstack([A, newrow])