Dec-21-2018, 09:49 PM
Don't use backslash as separator, It's an escape char, so '\t' is actually Tab.
make
use forward slash
or escape the backslash
I think this deserves a thread in Common pitfalls and what to do :-)
make
"c:\Python36\files\test.csv"
raw string - r"c:\Python36\files\test.csv"
use forward slash
"c:/Python36/files?test.csv"
or escape the backslash
"c:\\Python36\\files\\test.csv"
I think this deserves a thread in Common pitfalls and what to do :-)
If you can't explain it to a six year old, you don't understand it yourself, Albert Einstein
How to Ask Questions The Smart Way: link and another link
Create MCV example
Debug small programs
How to Ask Questions The Smart Way: link and another link
Create MCV example
Debug small programs