Relative Content

Tag Archive for pythonpathstring-literals

How should I write a Windows path in a Python string literal?

Suppose I need to refer to the path C:meshesas. If I try writing that directly, like "C:meshesas", I encounter problems – either some exception, or the path just doesn’t work. Is this because is acting as an escape character? How should I write the paths?