Here are a couple of examples taken from django-basic-apps:
# self.title is a unicode string already
def __unicode__(self):
return u'%s' % self.title
# 'q' is a string
search_term = '%s' % request.GET['q']
What's the point of this string formatting?