Ryuzaki
0
Q:

python __del__

# Python program to demonstrate 
# __del__ 

class Example:  
    
    # Initializing 
    def __init__(self):  
        print("Example Instance made.") 
  
    # Calling destructor 
    def __del__(self):  
        print("Destructor called, Example deleted.")  
    
obj = Example()  
del obj  

# Output
Example Instance made
Destructor called, Example deleted.
0

New to Communities?

Join the community