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.