我将jupyter笔记本(使用Anaconda)升级到了python 3(我卸载了旧版本并为py3重新安装了anaconda)。一个以前可以使用的简单pd.read_csv现在提供File Does not exist error.
我在Windows 7上。
filepath="C:\\python\\cfg\\TEST.csv"
cfgfile=pd.read_csv(filepath)
也尝试过:
filepath="C:/python/cfg/TEST.csv"
我做错了什么?
答案 0 :(得分:0)
文件路径如何?
import os
import pandas as pd
filepath="C:/python/cfg/TEST.csv"
os.chdir(os.path.dirname(filepath))
cfgfile= pd.read_csv(os.path.basename(filepath))