在程序目录下随便建了个c.py。里面内容是空的 。然后我就把它删掉了!最后运行pycharm的时候发现报错!
pydev_imports.execfile(file, globals, locals) #execute the script
IOError: [Errno 2] No such file or directory: 'E:/CodeSpace/Python/bootcamp-master/bootcamp/c.py'
我跟踪了下!发现有个__file__的属性值为E:/CodeSpace/Python/bootcamp-master/bootcamp/c.py
1。我在根目录下随便建了个文件 怎么__file__的值就为E:/CodeSpace/Python/bootcamp-master/bootcamp/c.py。
2。这个问题怎么解决?
不解