Computer Science, asked by prasannamayakuntla20, 3 months ago

. How memory is managed in Python?

1.Python memory is managed by Python public heap space.

2.Python memory is managed by Python private heap space.

3.Python memory is managed by OS.

4.None of the above​

Answers

Answered by aditya23kasare
0

Answer:

Memory management in Python involves a private heap containing all Python objects and data structures. ... - Python also has a build-in garbage collector which recycles all the unused memory. When an object is no longer referenced by the program, the heap space it occupies can be freed.

Similar questions