我在 Enthought Canopy 下运行代码来打开和读取文件。它一直告诉我 IOError。
但我很确定文本文件名是正确的,它与 Python 文件位于同一目录中,并且该代码在 Python IDLE 等其他 IDE 中运行良好。不知道怎么了。有什么建议么?
inFile = open('words.txt', 'r')
words = inFile.read().split()
失败了IOError: [Errno 2] No such file or directory: 'words.txt'