Computer Science, asked by prasannamayakuntla20, 1 month ago

How memory is managed in Python?​

Answers

Answered by ykartvya
0

Explanation:

The Python memory manager manages chunks of memory called “Blocks”. A collection of blocks of the same size makes up the “Pool”. Pools are created on Arenas, chunks of 256kB memory allocated on heap=64 pools. If the objects get destroyed, the memory manager fills this space with a new object of the same size.

Similar questions