Python Memory Management - CameronAuler/python-devops GitHub Wiki

Memory allocation

Python Programs, like all processes on a computer, utilize RAM(random access memory) while being executed. When a python program is run, it is allocated a certain amount of RAM called a region which provides the processing power for the program to complete the processes within the code. This region is split into two separate regions called the stack region and the private heap region.

Resources

To do

  • finish content
  • add diagrams