If I defined a class
class myclass:
def __init__(self, variable):
a = variable * 100
self.a = a*1000
and I created an instance of the myclass
object
myinstance = myclass([1])
After initialization, does python still keep a
in it's memory? or does it only store self.a
?