What are these "modifiers" called python front-ends? I do not understand what they are used for. In addition, since I do not know what they are called, I do not know what to look for to find out about them (or others that may be available, if any).
In this example, what does the āuā in front of the string in return mean?
def __unicode__(self): return u'title: %s, text: %s, created:%s, tags: %s' % (self.title, self.text, self.created, self.tags)
In this example, django urls, what does r mean?
urlpatterns = patterns('', (r'^admin/',include(admin.site.urls)), )
I am learning python and django, and I see them in the examples, but have no explanation of what they represent.
source share