Use the built-in copy module. Here is an example:
copy
import copy copied = copy.deepcopy(original)
After running this, copied will be a deep copy of the original list.
copied
original