0
Q:

numpy append number to array

import numpy as np
a = np.array([1, 2, 3])
newArray = np.append(a, [10, 11, 12])
2
A= [[1, 2, 3], [4, 5, 6]]
np.append(A, [[7, 8, 9]], axis=0)

    >> array([[1, 2, 3],
              [4, 5, 6],
              [7, 8, 9]])
#or 
np.r_[A,[[7,8,9]]]
3

New to Communities?

Join the community