我的桌面上有两个文件:
sotest.py
print 'Hello world'
sotest2.py
foo = open ('sotest.py', 'r')
我正在使用 Notepad++ 运行 Python,如下所示(从Use IDLE to launch script using the full file path):
C:\Program Files (x86)\Python27\Lib\idlelib\idle.bat -r "$(FULL_CURRENT_PATH)"
运行 sotest2.py 会返回以下内容:
Traceback (most recent call last):
File "C:\Users\doncherry\Desktop\sotest2.py", line 7, in <module>
foo = open ('sotest.py', 'r')
IOError: [Errno 2] No such file or directory: 'sotest.py'
当从 Pyhton 的 IDLE 中运行相同的文件时,它运行时不会出错。如果我将 sotest2.py 更改为以下内容,则它可以在 Notepad++ 中正常工作。
import sotest
我需要更改配置的哪一部分才能使打开工作?我更愿意更改 Notepad++ 中的一些设置,而不是向我的每个 Python 文件添加代码。