InterviewSolution
Saved Bookmarks
| 1. |
What is init method in python? |
|
Answer» The init method WORKS similarly to the constructors in Java. The method is run as soon as an object is instantiated. It is useful for initializing any attributes or default behaviour of the object at the time of instantiation. |
|