Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

copy a list in python

Tags:

python

list

Please what's the difference between this two codes in python:

white=[2,4,8,9]
black = white

and

white=[2,4,8,9]
black = white[:]

thank you so much.

like image 339
user2563817 Avatar asked Jun 08 '26 14:06

user2563817


1 Answers

The first copies a reference to the list white to the variable black

So any changes to black will also alter white and visa versa

Think of it as an alias or nickname for white

The second copies the contents of the list white to the variable black and is perhaps better written like this

black = list(white)

In this case there is no connection between the two variables black and white as it is the contents of white that are copied and not a reference to white itself.

Extra to take into account the relevant comment below (thanks Jon Clements): you can read more about deep copies vs shallow copies here Understanding dict.copy() - shallow or deep?

like image 196
Vorsprung Avatar answered Jun 11 '26 03:06

Vorsprung



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!