append vector to vector python

Solutions on MaxInterview for append vector to vector python by the best coders in the world

showing results for - "append vector to vector python"
Finbar
27 Jan 2018
1Xa = ['a1','a2','a3']
2Xb = ['b1','b2','b3']
3Xc = ['c1','b2','b3']
4
5resultArray = []
6resultArray.append(Xa)
7resultArray.append(Xb)
8resultArray.append(Xc)