this is the code I have:
l = [[1,'a'],[2,'b'],[3,'c']]
n = []
for i in range(len(l)):
n.append(l[i])
print(n)
I'm trying to select each element in the array to revers the number order only and putting it into a new array.
so I'm trying to get it to look like this:
[[3,'a'],[2,'b'],[1,'c']]
llist tonwith no transformation whatsoever.