I have several noobie questions related to multiple initialization of the same class instance in python. Is it proper way to change attributes of the object by creating instance many times:
obj=MyClass(a,b)
obj=MyClass(c,d)
obj=MyClass(e,f)
Are commands obj=MyClass(a,b) and obj.__init__(a,b) equal? If not, what is the difference?