There is a private heap space in Python that contains all the Python objects and data structures. In CPython there is a memory manager responsible for managing the heap space.
There are different components in Python memory manager that handle segmentation, sharing, caching, memory pre-allocation etc.
Python memory manager also takes care of garbage collection by using Reference counting algorithm.
Leave a Reply