2012-01-12 6 views
0

演習:のPythonを学びハード・ウェイ、EX60エクストラクレジット3

このファイルにあまりにも多くの繰り返しがあります。

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("line 1: ") 
line2 = raw_input("line 2: ") 
line3 = raw_input("line 3: ") 

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") 

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

私のコード:文字列、フォーマット、およびLINE1をプリントアウトするためにエスケープし、LINE2、および本からの代わりに6

コードのちょうど1 target.write()コマンドでLINE3を使用します:

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("line 1: ") 
line2 = raw_input("line 2: ") 
line3 = raw_input("line 3: ") 

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

target.write("%s\n%s\n%s\n") %(line1,line2,line3) 


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

私のソリューションは、動作しません。私はそこで見つけたものでこの演習を解決することができるかどうかを調べるためにGoogleで検索しましたが、正しいコードを出すことはできませんでした。 この演習の解決策は何ですか?

+6

'target.write("%s \ n%s \ n%s \ n "%(line1、line2、line3))' - 書き込み外の引数があります。 – TyrantWave

+0

@TyrantWaveありがとうございました! – 0101amt

答えて

6

何あなたが今やっていることは、あなたが何をしたいのか表現

target.write("%s\n,%s\n,%s\n") 

の結果に%フォーマット演算子を適用しているが、文字列

"%s\n%s\n%s\n" // Note that the code from the book doesn't print commas 

に%演算子を適用していますその結果をtarget.write()に渡します。

+0

ありがとうございました! – 0101amt

関連する問題