我現在開始學習Python,所以我的問題是有點傻Python的open()的Mac OS X的科莫多編輯
我有這樣一段代碼
#!/usr/local/bin/python3
# encoding: utf-8
fh = open("lines.txt")
for lines in readlines():
print(lines)
文本文件lines.txt退出,它在我的網頁的同一目錄下,我使用科莫多編輯,當我運行該文件,我得到這個錯誤。
Traceback (most recent call last):
File "/Users/Jeff/Sites/PythonLearning/forloop.py", line 4, in <module>
fh = open("lines.txt")
IOError: [Errno 2] No such file or directory: 'lines.txt'
有趣的是,如果我在IDLE中打開這個文件,它工作得很好,以及如果我在Mac OS X終端打開!
非常感謝!
+1使用科莫多,我喜歡的編輯器爲Python! – Gabe 2011-03-27 01:58:26