np.append( code example
Example 1: append value to numpy array
x = np.random.randint(2, size=10)
x = np.append(x, 2)
Example 2: np.append
>>> np.append([1, 2, 3], [[4, 5, 6], [7, 8, 9]])
array([1, 2, 3, ..., 7, 8, 9])
Example 3: numpy python add array
x1 = [1, 2]
x2 = [1, 2]
print(np.add(x1, x2))
# [2, 4]