I've been trying to learn about lists and loops but i can't quite get around this 'project', my code is:
lista=[[0,1,2,3],[10,11,12,13]]
transp=[]
w=[]
for x in lista[::-1]:
transp.append(w)
for y in x:
w.append(y)
print(transp)
it just prints
[[10, 11, 12, 13, 0, 1, 2, 3], [10, 11, 12, 13, 0, 1, 2, 3]]
and I can't understand why!
Appreciate your help