I first saw it used in building regular expressions across multiple lines as a method argument to re.compile, so I assumed that "r" stands for regex. For example:
regex = re.compile(
r'^[A-Z]'
r'[A-Z0-9-]'
r'[A-Z]$', re.IGNORECASE
)
But I played around with different characters and found that it also worked for the Unicode marker "u", and that it didn't have to be a method argument. For example:
s = (
u'The'
u'quick'
u'brown'
u'fox'
)
would result to the Unicode string: u'Thequickbrownfox'.
I also stumbled on another character that was allowed, "b". I'm only familiar with "u" meaning Unicode. What does "r" (and "b") mean, and are there other such markers? I'm having a hard time searching the docs for the answer, since I don't know what they're formally called. (A wild guess: "b" stands for byte, or single-byte characters)