Use copy.deepcopy() for a deep copy:
import copy
copy_list = copy.deepcopy(original_list)
For a shallow copy use copy.copy():
import copy
copy_list = copy.copy(original_list)
or slice with no endpoints specified :
copy_list = original_list[:]
See the copy docs for an explanation about deep & shallow copies.