How is memory managed in Python?

Questions by sripri   answers by sripri

Showing Answers 1 - 9 of 9 Answers

jayavanth

  • Apr 29th, 2013
 

Like other programming language python also has garbage collector which will take care of memory management in python.

  Was this answer useful?  Yes

Malaya samantaray

  • Jun 1st, 2017
 

Python memory is managed by Python private heap space. All Python objects and data structures are located in a private heap. The programmer does not have an access to this private heap and interpreter takes care of this Python private heap
-The allocation of Python heap space for Python objects is done by Python memory manager. The core API gives access to some tools for the programmer to code.
-Python also have an inbuilt garbage collector, which recycle all the unused memory and frees the memory and makes it available to the heap space.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions