- What is the difference between shallow and deep copy in Python?
Réponse à la question d'entretien
Utilisateur anonyme
1 août 2022
The first doesn't create a copy of the elements in a list, keeping the original pointers to elements. The second make sure the list and its elements are a copy.