how to add element in np array code example
Example 1: numpy append number to array
import numpy as np
a = np.array([1, 2, 3])
newArray = np.append(a, [10, 11, 12])
Example 2: add item to numpy array python
>>> np.append([1, 2, 3], [[4, 5, 6], [7, 8, 9]])
array([1, 2, 3, ..., 7, 8, 9])