10.12. Cloning ListsΒΆ
If we want to modify a list and also keep a copy of the original, we need to be able to make a copy of the list itself, not just the reference. This process is sometimes called cloning, to avoid the ambiguity of the word copy.
The easiest way to clone a list is to use the slice operator.
Taking any slice of a
creates a new list. In this case the slice happens to
consist of the whole list.
Activity: CodeLens 10.12.1 (chp09_is4)
Before you keep reading...
Making great stuff takes time and $$. If you appreciate the book you are reading now and want to keep quality materials free for other students please consider a donation to Runestone Academy. We ask that you consider a $10 donation, but if you can give more thats great, if $10 is too much for your budget we would be happy with whatever you can afford as a show of support.
Now we are free to make changes to b
without worrying about a
. Again, we can clearly see in codelens that a
and b
are entirely different list objects.