Describe why __init__.py a bit more

I could not understand intit.py and why it is important can you explain in more detail

hey @Deep50 ,
Whenever we create an object of a Class it calls its constructor to initialize variables , init function is that constructor here and Any module acts like that class.
While creating multi purpose modules , There are many common variables to be initialized to get the proper working of our module. init function does that work.

Whenever we import any module, the init.py file is called by itself. If there is no working of it is provided it just gets initialized as an empty python code file.

I hope this helped you to understand this.
Thank You and Happy Learning :slightly_smiling_face:.