Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python

Can someone explain further why copy.copy is used

So from my understanding Python automatically passes all parameters by reference and variables in Python are actually pointers themselves.

So basically, if we were NOT to use copy.copy in Kennith's example where he calls javascriptobject.JavaScriptObject(2, [1,2,3]) what's happening is that all the lists created are all "pointing" to the same place in memory where [1,2,3] is stored, thus if there was ever a change to the list passed, then all the lists created by javascriptobject.JavasScriptObject would be changed as well.

BUT, by using copy.copy we are making the same list, but storing them in different memory address

Is my understanding correct?

1 Answer

Steven Parker
Steven Parker
229,644 Points

You're quite right. A ".copy()" of a list is an entirely new duplicate list and not a reference to the original.