>>> class Test: def __init__(self): print "Hellooooo, world!" >>> test = Test() Hellooooo, world!
>>> class Test: def __init__(self): print "just initiated the Test class" def __del__(self): print "just deleted the Test instance" >>> test = Test() just initiated the Test class >>> del test just deleted the Test instance