1. Help Center
  2. Python Programming

what is the difference between deep and shallow copies?

Shallow copy does the task of creating new objects storing references of original elements. This does not undergo recursion to create copies of nested objects. It just copies the reference details of nested objects.
Deep copy creates an independent and new copy of an object and even copies all the nested objects of the original element recursively.