Concept Flow - String representation with __str__
Define model class
Add __str__ method
Create model instance
Call str(instance)
Return string from __str__
Display string in admin or shell
This flow shows how defining __str__ in a Django model returns a readable string when the instance is printed or displayed.