【Python异常】OSError: Initializing from file failed

环境:

Pycharm

Python3.7

ipython notebook


场景:

OSError                                   Traceback (most recent call last)
 in 
      3 # 1.导入数据
----> 4 data = pd.read_csv(r"E:\PyCharmCode\数据挖掘\energydata_complete.csv")
      5 # 2.将str格式的时间数据转换成时间格式
      6 data['date'] = pd.to_datetime(data['date'], format="%Y-%m-%d %H:%M:%S")

提示:

OSError: Initializing from file failed


原因:

在ipython notebook中使用padas读取数据不能出现中文字符。第一次使用绝对路径,之前在python文件中使用带有中文的路径没有发现异常。ipython notebook出现这种现象的深层原因不明!

你可能感兴趣的:(Python语言学习)