Raw

Python

Python - Raw Strings

Raw strings change how Python’s parser interprets backslashes in string literals. In a normal string, becomes a newline character and becomes a tab. In a raw string, these remain as two…

Read more →