0
if we don't write "del" and declare same variables with two different values, and if we tell to print that variable then it is t
1 Resposta
0
a = 5
del a
a = 10
VS
a = 5
a = 10
In both ways a is 10 eventually. But the first one add an extra deletion