Im trying to loop over arrays with similar name, as such:
a0=[]
a1=[]
a2=[]
a3=[]
a4=[]
for k in range(len(mlac)): # mlac.shape (17280, 5)
for I in range(len(mlac[0])):
'a%i'%I.append(mlac[k][I])
# or : 'a{}'.format(I).append(mlac[k][I])
But both are considered strings on the loop and cannot append.
So for each iteration of 'I', we take the corresponding column of 'mlac' and add to the array 'a' of corresponding iteration.