Confused about Python copy list using a colon? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Confused about Python copy list using a colon?

Can someone please explain why the first case doesn't change the original list and second case does? a=[1,[2,3]] print(a) b=a[:] a[0]=3 a[1][0]=5 print(b) Output: ------- [1, [2, 3]] [1, [5, 3]]

9th Jan 2020, 5:03 PM
Gazzy Lammy
Gazzy Lammy - avatar
1 Answer
+ 2
Copy with the colon slice, is actually a shallow copy, it copies only the reference of the nested list. To make sure that all nested structures are copied and become independent of the original, you must use copy.deepcopy() function. Check this for more details. https://www.google.com/amp/s/www.geeksforgeeks.org/copy-JUMP_LINK__&&__python__&&__JUMP_LINK-deep-copy-shallow-copy/amp/
9th Jan 2020, 5:14 PM
Tibor Santa
Tibor Santa - avatar