Answers for "appending to an array python"

1

how to add array in python

theArray = []

theArray.append(0)
print(theArray) # [0]

theArray.append(1)
print(theArray) # [0, 1]

theArray.append(4)
print(theArray) # [0, 1, 4]
Posted by: Guest on September-22-2021
0

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)
Posted by: Guest on November-28-2020

Python Answers by Framework

Browse Popular Code Answers by Language