InterviewSolution
Saved Bookmarks
| 1. |
How is memory managed in Python? |
|
Answer» PYTHON's private heap space is in charge of memory management. The private heap contains all Python objects and data structures, but the programmer does not have access to it. The Python interpreter, on the other hand, takes care of this.
|
|