Q. What is the purpose of `__init__` method in Python classes?
β
Correct Answer: (B)
It initializes the object
Explanation: `__init__` is the constructor method called when a new object is created.