Python Principles
Python Q&A

How do I deep copy a list?

Answer:

Use the built-in copy module. Here is an example:

import copy
copied = copy.deepcopy(original)

After running this, copied will be a deep copy of the original list.