Python Memory Management

From NovaOrdis Knowledge Base
Jump to navigation Jump to search

Internal

Overview

Python uses two strategies for memory allocation:

  • Reference counting
  • Garbage collection

https://www.geeksforgeeks.org/garbage-collection-python/