python中的loadtxt错误

时间:2016-05-10 07:28:09

标签: python pycharm

我无法在python中加载文件。激活pycharm后,我正在运行virualenv

我正在尝试加载softdata.txt,它位于softmax classification.py

的同一文件夹中

发生以下错误:No such file or directory: 'softdata.txt'

我不明白为什么会这样。请帮帮我。

2 个答案:

答案 0 :(得分:0)

你100%确定softdata是.txt文件吗?我没看到扩展名 enter image description here

我也注意到了以下内容 enter image description here

它似乎没有读入多功能文件路径

答案 1 :(得分:0)

Python文件在文件名中不能包含空格。这是因为Python文件(Cannot start process, the working directory '/root/PycharmProjects/tensorflow study/softmax' does not exist)实际上是可导入的模块,并且您不能在名称中包含空格的模块。

错误实际上位于屏幕的底部,其中显示:

softmax classification.py

注意它停在 softmax ,即使该文件名为 softmax classification.py

简单的解决方案是重命名文件并删除空格;所以文件softmaxclassification.pycurrent directory.py

您可能还想将currentdirectory.py重命名为{{1}}。