. 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
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