0 votes
in Python by
How Does Python Manage The Memory?

1 Answer

0 votes
by

Python implements a heap manager internally which holds all of its objects and data structures.

This heap manager does the allocation/de-allocation of heap space for objects.

...