Technically, any odd number of backslashes, as described in the documentation. >>> r'\' File "<stdin>", line 1 r'\' ^ SyntaxError: EOL while scanning string literal >>> r'\\' '\\\\' >>>...
While asking this question, I realized I didn’t know much about raw strings. For somebody claiming to be a Django trainer, this sucks. I know what an encoding is,...