2014-10-10 119 views
1

任何人都可以幫助我完成此任務。我是Python的新手。我試圖做到這一點: 文件名應該是硬代碼名稱叫做:Server_Information.txt和第二列應該由用戶輸入插入,但日期戳。 內置者:李四 構建日期:%d%M%Y 生成原因:遊樂場 請求者:李四從用戶輸入創建文件

也許我可以用這個測試腳本,但第一列不會在最後的測試文件顯示。

謝謝你對任何人可以幫助

from sys import argv 

script, filename = argv 

print "We're going to erase %r." % filename 
print "If you don't want that, hit CTRL-C (^C)." 
print "If you do want that, hit RETURN." 

raw_input("?") 

print "Opening the file..." 
target = open(filename, 'w') 

print "Truncating the file. Goodbye!" 
target.truncate() 

print "Now I'm going to ask you for three lines." 

line1 = raw_input("Built By : ") 
line2 = raw_input("Build Date: %d%m%y ") 
line3 = raw_input("Build Reason: ") 
line4 = raw_input("Requestor: ") 

print "I'm going to write these to the file." 

target.write(line1) 
target.write("\n") 
target.write(line2) 
target.write("\n") 
target.write(line3) 
target.write("\n") 
target.write(line4) 

print "And finally, we close it." 
target.close() 

回答

0

嘗試寫此之後重新打開該文件,因爲現在你不記錄邀請作爲文件。

target.write('%s: %s\n' % ('Built By', line1)) 
target.write('%s: %s\n' % ('Build Date', line2)) 
target.write('%s: %s\n' % ('Build Reason', line3)) 
target.write('%s: %s\n' % ('Requestor', line4)) 
+0

同樣在這裏,我用你的替換我的target.write,不工作給我錯誤。 – pirulo 2014-10-10 13:40:41

1

嘗試關閉和截斷()

target.close() 
target = open(filename, 'w') 
# ask for user input here 
# and close file 
+0

我不能讓它工作.. Thks – pirulo 2014-10-10 13:42:40

0

由於raw_input只返回由用戶輸入的輸入,不包括你使用的提示信息,所以你需要將這些信息手動添加到line1,像這樣:

line1 = "Built By : " + raw_input("Built By : ") 

併爲line2我想你想自動生成它而不是要求用戶輸入,你可以這樣做:

line2 = "Build Date: " + time.strftime("%d%m%Y", time.localtime()) 
+0

WKplus,謝謝您的輸入。我無法讓它工作。我收到的錯誤名稱未定義。我運行在調試器模式下。 python -m pdb script.py但作爲兒子,我把它死的文件的名稱。 – pirulo 2014-10-10 13:28:48

+0

@pirulo在使用'time.strftime'之前,您需要添加'import time'。 – WKPlus 2014-10-11 02:18:18

+0

謝謝,它就像一個魅力..! – pirulo 2014-10-11 03:39:47