try raw string literals, they don't interpret escape sequences.
r"c:\path\to\your\file"
Also, you probably should be using this pattern to join paths, it's more
portable.
The **'/'** operator will join components using **dirSep**, which can be
"/"(Unix) or r""(Windows)
import os
"root" / "folder" / "subfolder" / "file"
