Deep Copy v/s Shallow Copy
In Python, when you assign an object to a new variable, the new variable is a reference to the original object, rather than a copy of the original object. This means that if you modify the object through the new variable, the original object will als...
computergeeks.hashnode.dev2 min read