Home Browser Contributors

r-strings

r-strings in Python are raw strings they dont need regular string things like escaping \ with \\. To specify a string as an r-string by putting an r before quotes. r-strings can be used with both double and single quotes.

Example

``` py print(r'Im printed with a raw string') ```