Q. Which method is automatically called when an object is converted to a string using str()?
β
Correct Answer: (A)
__str__()
Explanation: The __str__() method is used to define the string representation of an object.