Basically, im trying to make array of arrays in python and i don't know how really. It needs to be in "for" loop and each time it goes trough loop, it needs to add array of some numbers to the array of arrays but of course on index+1
EDIT: this is what i already tried, but it gives me error:
for x in range(5):
poljeRazina[x][x]=1
