I have a .csv file on my F: drive on Windows 7 64-bit that I\'d like to read into pandas and manipulate.
None of the examples I see read from anything other than a s
A better solution is to use literal strings like r'pathname\filename' rather than 'pathname\filename'. See Lexical Analysis for more details.