Shallow vs Deep Copy in Python
Posted by Jack McKew on Fri 09 October 2020 in Data Science • Tagged with datascience, python • 4 min read
Shallow vs Deep Copy in Python¶
One of the utmost crucial parts in all programming languages is maintaining variables. We create, modify, compare, delete our variables to build more complex systems that eventually make up the software we use. This is typically done by using the =
operator (eg x = 5 …
Continue reading