Q. Which of these best describes a constructor in Python?
β
Correct Answer: (C)
A method that initializes an object
Explanation: `__init__()` is the constructor method called when an object is created.