Sometimes, however, we might not want a line to end, even if the string contains "\n". That's why raw strings are a thing.

Awesome! If we don’t want the characters that follow a backslash to be seen as escape characters, we need to add an r before the string literal.

Yikes! This is why we need raw strings. Here, python would read :\ as a line break and print C: and otes on two different lines.