Question d’entretien chez Oracle

How does memory management work in Python?

Réponse à la question d'entretien

Utilisateur anonyme

27 févr. 2025

Python uses automatic memory management with reference counting and garbage collection (GC). The GC removes circular references using the generational garbage collector.