python vector append code example

Example 1: append value to numpy array

x = np.random.randint(2, size=10)
x = np.append(x, 2)

Example 2: how to add numpy arrays

added = a+b #elementwise
added_in_the_end = np.concatenate(a,b) #add at the end of the array
#if you want to add in multiple dimentions check the documentation of np.concatenate

Example 3: append vector to vector python

Xa = ['a1','a2','a3']
Xb = ['b1','b2','b3']
Xc = ['c1','b2','b3']

resultArray = []
resultArray.append(Xa)
resultArray.append(Xb)
resultArray.append(Xc)