DEV Community

Discussion on: Python: __init__() is not the only constructor

 
delta456 profile image
Swastik Baranwal

There is also __del__ which is called but it is not needed to make because it de-allocates the object. I think it functions like a destructor.