Tag
Tag:Copy
All the articles with the tag "Copy".
May 01, 2017 · 1 min readPython
There is more to copying
An assignment only creates a binding (an association) between a name and a target (object of some type). A copy is sometimes necessary so you can change the value of one object without changing the other (when two names are pointing to the same object)
Continue reading →