Program - Deepcopy in python
Topic: Program - Deepcopy in python
Solution
list1 = [[1],[2]] list2 = list1.copy() # shallow copy list3 = deepcopy(list1) # deep copy print('IDs:\nlist1: {}\nlist2: {}\nlist3: {}\n' .format(id(list1), id(list2), id(list3)))
List all Python Programs