Dec-21-2018, 09:48 PM
The backslash is an escape character. So you need to either:
1) escape it:
2) use a raw string:
3) use forward slashes:
You can tell this from the error message, where instead of "files", it's looking for a folder called "Python36\x0ciles".
1) escape it:
"c:\\Python36\\files\\test.csv"
2) use a raw string:
r"c:\Python36\files\test.csv"
3) use forward slashes:
"c:/Python36/files/test.csv"
You can tell this from the error message, where instead of "files", it's looking for a folder called "Python36\x0ciles".