Reference Counting in Python
Reference Counting/Object Allocation in Python
In this article we will see how python keeps track of objects in memory using a technique called Reference Counting. Before talking about this lets see what a python object is.
Python Object :
Python uses the object model abstraction for data storage. Anything that contains any type of value is an object. Every Python object has three characteristics :
IDENTITY
Unique identifier that…
View On WordPress












