Is there a python convention for when you should implement __str__()
versus __unicode__()
. I’ve seen classes override __unicode__()
more frequently than __str__()
but it doesn’t appear to be consistent. Are there specific rules when it is better to implement one versus the other? Is it necessary/good practice to implement both?