python deepcopy an object code example
Example 1: python clone object
import copy
new_ob = copy.deepcopy(old_ob)
Example 2: .copy python
new_list = list.copy()
# returns a new list without modifying the orginal list.
import copy
new_ob = copy.deepcopy(old_ob)
new_list = list.copy()
# returns a new list without modifying the orginal list.