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.

Related questions

0 votes
asked Jun 26, 2020 in Python by AdilsonLima
0 votes
asked Sep 22, 2021 in Python by sharadyadav1986
...