pandas.read_csv FileNotFoundError: File b‘\xe2\x80\xaa<etc>‘ despite correct path

问题:

import pandas as pd
df = pd.read_csv('‪C:\Users\user\Desktop\datafile.csv')

运行上述代码总是报错,错误如下:

FileNotFoundError: File b'\xe2\x80\xaaC:/Users/user/Desktop/tutorial.csv' (or the relevant path) does not exist.

解决:
好多帖子都说将"“改为”/“或”\",又或者在前面加上r,亲测都没用。这个有可能是你复制文件路径时有看不到的字符复制进去了。把文件路径再手打一遍就行

你可能感兴趣的:(BUG,python,开发语言,后端)