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)

link|improve this question

Note that the splitting of strings over multiple lines within parentheses has nothing to do with the character prefix - this is just an example of Python's automatic string concatenation, and works with any prefix or none. – Daniel Roseman Jan 24 '11 at 9:10
1  
Preceding a string with a letter like 'r' or 'u' means you need to read the documentation. Seriously. "played around with different characters" is the worst thing you can do. You won't learn much that way and what you'll learn will be slow and confusing. Please read the documentation. Please. – S.Lott Jan 24 '11 at 11:08
1  
I tried. I did say, "I'm having a hard time searching the docs for the answer, since I don't know what they're formally called." -- I didn't have the luxury of time to really look. You know, deadlines and stuff. :P I only searched for "python string prefix", and although the top answer's link to "Lexical analysis" was the 2nd result, "Lexical analysis" kinda turned me away from reading the linked page, since it sounded like a heavy read. – Nikki Erwin Ramirez Jan 26 '11 at 5:42
I could also make up an excuse that I wanted this question logged here in SO. :p – Nikki Erwin Ramirez Jan 26 '11 at 5:47
feedback

2 Answers

up vote 7 down vote accepted

The r means that the string is to be treated as a raw string, which means all escape codes will be ignored.

For an example:

'\n' will be treated as a newline character, while r'\n' will be treated as the characters \ followed by n.

When an 'r' or 'R' prefix is present, a character following a backslash is included in the string without change, and all backslashes are left in the string. For example, the string literal r"\n" consists of two characters: a backslash and a lowercase 'n'. String quotes can be escaped with a backslash, but the backslash remains in the string; for example, r"\"" is a valid string literal consisting of two characters: a backslash and a double quote; r"\" is not a valid string literal (even a raw string cannot end in an odd number of backslashes). Specifically, a raw string cannot end in a single backslash (since the backslash would escape the following quote character). Note also that a single backslash followed by a newline is interpreted as those two characters as part of the string, not as a line continuation.

Source: Python string literals

link|improve this answer
feedback

It means that escapes won’t be translated. For example:

r'\n'

is a string with a backslash followed by the letter n. (Without the r it would be a newline.)

b does stand for byte-string and is used in Python 3, where strings are Unicode by default. In Python 2.x strings were byte-strings by default and you’d use u to indicate Unicode.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.