标签:das pen and 文件名 bsp panda color ini code
用pandas读取文件时遇到Initializing from file failed这种错误:
一般是因为文件名中带有中文,如下:
f = pd.read_csv(‘文件.csv‘)
只需要这样修改即可:
f = open(‘文件.csv‘) d = pd.read_csv(f)
Initializing from file failed错误
标签:das pen and 文件名 bsp panda color ini code
原文地址:https://www.cnblogs.com/qiuyuyu/p/9166226.html