Python operation

6

As I understand it, when creating a variable, we are creating an object, and the name of the variable refers to it.

If I do:

a = 2
a = "Hola"

The garbage collector is responsible for deleting object 2, since it does not need it and no other variable is referencing it in the program. On the other hand, if I write:

a = 2
b = a
a = "Hola"

When b is referencing object 2, now I have both objects in memory, and neither of them is deleted.

Am I right? Thank you very much.

    
asked by FermatsTheorem 20.02.2017 в 13:23
source

2 answers

7

A tip: in python do not think about objects that are created or destroyed, rather think about objects that you access through their name, a mere label with which you indicate to the interpreter what he has to do.

Everything you see about "creation of variables" or "assignment of variables" is an inheritance of how you thought in other languages. In python they "give names" .

For following your example:

a = 2
a = "Hola"

To the object of type integer 2 we identify it with the name a . Then, to the object string "Hola" we identify it with the name a . The only thing you can guarantee now is that the name a identifies the string "Hola" ; you can not know what happened to the 2 object. It is possible that it was referencing with another name and that it can not be deleted. It is also possible that, being such a common object, it is always available in memory. In python, all numbers from -5 to 256 exist in memory, although no one uses them, for optimization reasons.

One way to confirm it:

[i for i in range(-100,300) if id(i)==id(i+0)]

id() returns a unique identifier for each object. If two objects have the same identifier, they are the same object.

With chains, something more curious happens:

id("hola2")==id("hola"+"2")  # -> True
id("hola 2")==id("hola "+"2") # -> False

This behavior corresponds to an automatic process of "internalization of strings" used in the optimizations of the interpreter. This process caches all the character strings present in the code that comply with the variable naming rules. In the previous case, hola2 could serve as the name of one variable, hola 2 no. Any internalized string will never be deleted , even if it is not referenced.

To conclude, let's look at the last case:

a = 2
b = a
a = "Hola"

Here, what is done is to give another name, b , to the object pointed to a . Nothing is created, nothing is destroyed.

Entering at a lower level, it is not the GC that destroys the objects. The objects have a reference counter so that, when this counter reaches zero, they self-destruct.

The GC is an instrument that the interpreter has to free memory in certain complex cases to detect, such as circular references :

a = []
b = [a]
a.append(b)
del a
del b

Here we have created two lists that self-reference and then we have deleted our references. Although we have no way to access these lists, they are referencing each other, so their reference counters never reach zero. It must be the GC who is responsible for checking that there is no other object that needs them and deletes them from memory.

    
answered by 20.02.2017 / 17:38
source
1

your first example:

a = 2  variable 'a' almacenando 2
a = "Hola" ahora a almacena "HOLA"
  

you have a variable because it is the same variable, changing its value   from 2 to "HELLO". there can only be two or more variables with the same name with different scope.

your second example

a = 2 // variable 'a' almacenando 2
b = a // variable 'b' almacenando el valor actual de la variable 'a'(el valor es 2)
a = "Hola" // ahora la variable a almacena "HOLA"
  

When b is referencing object 2, now I have the two objects in   memory, and neither of them is eliminated.

answering your question: you have two variables a, b because they have different names.

    
answered by 20.02.2017 в 16:17