Is there a way to delete the memory address of a variable in python? For example, I was implementing an code like
var = 23
address = hex(id(var))
print (var+":"+address)
del address
print (var+":"+address)
If I want to remove address of the variable var then show an error message like
Name Error: name 'address' is not defined
Is there any way to delete the variable address or modify the value of the variable using address variable?