How memory and Garbage Collector work in CPython: analysis for Python backend interview
In Python, memory is managed not only by the Garbage Collector. In fact, the basis of everything is reference counting , and the GC only helps to collect cyclic references. In this article, we will lo…