r'\'
in Python does not work as expected. Instead of returning a string with one character (a backslash) in it, it raises a SyntaxError. r"\"
does the same.
This is rather cumbersome if you have a list of Windows paths like these:
paths = [ r'\bla\foo\bar',
r'\bla\foo\bloh',
r'\buff',
r'\',
# ...
]
Is there a good reason why this literal is not accepted?
To address your root problem, you can use
/
in paths on Windows in Python just fine.The
r''
andr""
syntax (raw
) is primarily for working with regular expressions. It doesn't really get you anything in the case of working with paths like you are expecting, especially where the string ends with a\
.Otherwise if you insist on using
\
either use'\\'
or"\\"
, you have to escape the escape character which is\
; it isn't pretty, using/
oros.path.sep
is the best solution.The answer to my question ("Why is a backslash not allowed as last character in raw strings?") actually to me seems to be "That's a design decision", furthermore a questionable one.
Some answers tried to reason that the lexer and some syntax highlighters are simpler this way. I don't agree (and I have some background on writing parsers and compiler as well as IDE development). It would be simpler to define raw strings with the semantics that a backslash has no special meaning whatsoever. Both lexer and IDE would benefit from this simplification.
The current situation also is a wart: In case I want a quote in a raw string, I cannot use this anyway. I only can use it if I happen to want a backslash followed by a quote inside my raw string.
I would propose to change this, but I also see the problem of breaking existing code :-/
The backslash can be used to make a following quote not terminate the string:
So
r'foo\'
orr'\'
are unterminated literals.Rationale
Because you specifically asked for the reasoning behind this design decision, relevant aspects could be the following (although this is all based on speculation, of course):
So yes, there are probably important reasons why this way was chosen, even if you don't agree with these because you think that your specific use case is more important. It is however not, for the following reasons:
\
as a path separator, which is usually not necessary because Python supports/
as a path separator on Windows and because there'sos.path.sep
.Solutions
You can use
'\\'
or"\\"
instead:Or if you're completely crazy, you can use raw string literal and combine them with normal literals just for the ending backslash or even use string slicing:
Or, in your particular case, you could just do:
Which would save you some typing when adding more paths, as an additional bonus.
This is in accordance with the documentation:
Use
"\\"
instead, or, better even, use/
as path separator (yes, this works on Windows).That is because in raw strings, you need a way to escape single quotes when the string is delimited by single quotes. Same with double quotes.
http://docs.python.org/reference/lexical_analysis.html#string-literals