Let's say I have some code like this:
default_pos = (21,45)
#I do some more stuff now, then change my mind to change the default_pos
#So, I overwrite default_pos and assign something else to it
default_pos = (756,600)
What if instead of this I declared a new variable called default_pos_changed
and left the old one just how it is? That would mean an unnecessary variable. So,wouldn't it use up a bit more memory than needed? Now, if there were hundreds of unused variables like this, it might be a problem, right?