Q. What does `__dict__` do in a Python object?
β
Correct Answer: (C)
Stores attributes in dictionary form
Explanation: `__dict__` is a dictionary containing all the writable attributes of an object.