
Object Representation
March 21, 2025About 2 min
Object Representation 관련
How Python Magic Methods Work: A Practical Guide
Have you ever wondered how Python makes objects work with operators like + or -? Or how it knows how to display objects when you print them? The answer lies in Python's magic methods, also known as dunder (double under) methods. Magic methods are spe...
How Python Magic Methods Work: A Practical Guide
Have you ever wondered how Python makes objects work with operators like + or -? Or how it knows how to display objects when you print them? The answer lies in Python's magic methods, also known as dunder (double under) methods. Magic methods are spe...
When you work with objects in Python, you often need to convert them to strings. This happens when you print an object or try to display it in the interactive console. Python provides two magic methods for this purpose: __str__
and __repr__
.
__str__
vs __repr__
The __str__
and __repr__
methods serve different purposes:
__str__
: Called by thestr()
function and by theprint()
function. It should return a string that is readable for end-users.__repr__
: Called by therepr()
function and used in the interactive console. It should return a string that, ideally, could be used to recreate the object.
Here's an example that shows the difference:
class Temperature:
def __init__(self, celsius):
self.celsius = celsius
def __str__(self):
return f"{self.celsius}°C"
def __repr__(self):
return f"Temperature({self.celsius})"
temp = Temperature(25)
print(str(temp)) # Output: 25°C
print(repr(temp)) # Output: Temperature(25)
In this example:
__str__
returns a user-friendly string showing the temperature with a degree symbol__repr__
returns a string that shows how to create the object, which is useful for debugging
The difference becomes clear when you use these objects in different contexts:
- When you print the temperature, you see the user-friendly version:
25°C
- When you inspect the object in the Python console, you see the detailed version:
Temperature(25)
Practical Example: Custom Error Class
Let's create a custom error class that provides better debugging information. This example shows how you can use __str__
and __repr__
to make your error messages more helpful:
class ValidationError(Exception):
def __init__(self, field, message, value=None):
self.field = field
self.message = message
self.value = value
super().__init__(self.message)
def __str__(self):
if self.value is not None:
return f"Error in field '{self.field}': {self.message} (got: {repr(self.value)})"
return f"Error in field '{self.field}': {self.message}"
def __repr__(self):
if self.value is not None:
return f"ValidationError(field='{self.field}', message='{self.message}', value={repr(self.value)})"
return f"ValidationError(field='{self.field}', message='{self.message}')"
# Usage
try:
age = -5
if age < 0:
raise ValidationError("age", "Age must be positive", age)
except ValidationError as e:
print(e) # Output: Error in field 'age': Age must be positive (got: -5)
This custom error class provides several benefits:
- It includes the field name where the error occurred
- It shows the actual value that caused the error
- It provides both user-friendly and detailed error messages
- It makes debugging easier by including all relevant information