Appending list to another list in range | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Appending list to another list in range

Hi, I don't understand the output of this code: L = [] D = [] for x in range (4): D.append(x) L.append(D) print(L) print(D) I assumed that the output will be: [[0], [0,1], [0,1,2], [0,1,2,3]] [0,1,2,3] The actual output is: [[0, 1, 2, 3], [0, 1, 2, 3], [0, 1, 2, 3], [0, 1, 2, 3]] [0, 1, 2, 3] For me is clear that D = [0,1,2,3], but L is hard to understand.

20th Jul 2019, 5:05 PM
Marek Kluczewski
Marek Kluczewski - avatar
2 Answers
0
D = something different at each iteration. 0, 01, 012, 0123. L goes through iteration also. 0 01,01 012,012,012 0123,0123,0123,0123 After the final iteration that's what you have.
20th Jul 2019, 6:01 PM
James
James - avatar
0
How should I change the code so that L = [[0], [0,1], [0,1,2], [0,1,2,3]]? I still don't fully understand this. I thought that the function append adds an element only once but here it is addes 4 times at the final iteration?
20th Jul 2019, 7:44 PM
Marek Kluczewski
Marek Kluczewski - avatar