✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
class Foo:
____def __init__(self):
________print ('constructor', end=' ')
____self.__del__(self)
____def __del__(self):
________print ('destructor', end=' ')
obj = Foo()