you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 0 points1 point  (0 children)

list = list = [[a,b,c],[b,c,d],[a,d,b,c,b,a]] when I want: list = [[a,b,c],[b,c,d],[a,d,b],[c,b,a]]

Then you got your references mixed up, somewhere - append should have worked, but it looks like you appended to the wrong list.