2012-08-11 86 views
0

我剛剛在一週前開始學習Python。感謝所有提問並回答問題的人,我已經取得了相當大的進步。昨晚我遇到了一個問題,經過大量的搜索和思考 - 我仍然無法弄清楚。在Xcode中找不到輸出文件

我試着在Xcode中做一個Python項目,但我找不到輸出文件。 「在main.py文件,我有以下代碼:

import objc 
import Foundation 
import AppKit 
from PyObjCTools import AppHelper 

file = open('test.txt', 'w') 

print >> file, 'Test of the emergency broadcast system.' 
print 'This is merely a test...' 

file.close() 

控制檯中將顯示‘這僅僅是一個測試,我的’從可可Python應用程序」選擇你的模板菜單中選擇項目的開工...「的聲明,但我無法在任何地方找到輸出文件'test.txt',我搜索了計算機並找不到它,我確定這是一件愚蠢的事情,但是我錯過了什麼?

回答

0

打印到控制檯,你會看到文件名:

print file 

http://docs.python.org/tutorial/inputoutput.html#reading-and-writing-files


如果只是表明你的相對路徑,打印CWD像這樣:

from os import getcwd 
print 'Current directory:', getcwd() 

http://docs.python.org/library/os#os.getcwd

+0

不錯,謝謝!你的第二個建議提供了答案。我之前一直在使用PyCharm,習慣了剛剛出現在當前目錄中的輸出文件。 – 2012-08-11 23:45:24