我正在学习 Zed Shaw 的“Learn Python The Hard Way”。我要练习 16 ( http://learnpythonthehardway.org/book/ex16.html ) 并且遇到了一个问题来找出额外的信用 #3。在底部有一系列 6 个 target.write 命令script 和 Zed 希望我使用字符串、格式和转义符将它们简化为单个 target.write 命令。
这是带有 6 个 target.write 命令的原始脚本...
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()
首先,我尝试像这样压缩 target.write 命令......
target.write (line1, line2, line3)
当我运行脚本时,我得到了;TypeError:函数只需要 1 个参数(给定 3 个)
然后我试了...
target.write "I love %r and %r and %r." % (line1, line2, line3)
我得到 SyntaxError: invalid syntax
我也试过...
target.write (line1), (line2), (line3)
这次脚本运行到竞争没有任何错误,但是当我打开脚本应该写入的文件(text.txt)时,它只将第一个字符串(line1)写入文件,而不是其他两个字符串(第 2 行)和(第 3 行)。
最后,我尝试了这个...
target.write (line1, "\n", line2 "\n", line3, "\n")
但是我又得到了一个 SyntaxError: invalid syntax
有人可以指出我正确的方向吗?
非常感激。
埃迪