rawstring
A raw string is a string literal that treats backslashes as literal characters rather than escape sequences. This means that a backslash within a raw string will not be interpreted as the start of an escape character like newline, tab, or carriage return. Raw strings are particularly useful when working with regular expressions or file paths that frequently contain backslashes.
In many programming languages, raw strings are denoted by prefixing the string literal with a specific character
The primary advantage of using raw strings is to simplify the writing and reading of strings that