我写了一个基本文件写代码 -
f = open('workfile', 'r+')
f.write('0123456789abcdef')
我在cmd处运行文件,放在workfile.txt
文件所在的文件夹中,但是我收到了错误 -
IOError:[Errno 2]没有这样的文件或目录:'workfile'
我还尝试使用py2exe转换为exe文件并运行exe文件,但没有...
问题是什么?
谢谢!
====================
检查编译器时的完整错误按摩 -
Traceback (most recent call last):
File "/home/ubuntu/workspace/.c9/metadata/workspace/2.py", line 1, in <module>
f = open('workfile', 'r+')
IOError: [Errno 2] No such file or directory: 'workfile'
答案 0 :(得分:1)
重命名&#39; workfile&#39; to&#39; workfile.txt&#39;:
f = open('workfile.txt', 'r+')